count_seq | R Documentation |
Use grep to count the number of line with only one '+' (fastq, fastq.gz) or lines starting with a '>' (fasta) to count sequences.
count_seq(file_path = NULL, folder_path = NULL, pattern = NULL)
file_path |
The path to a fasta, fastq or fastq.gz file |
folder_path |
The path to a folder with fasta, fastq or fastq.gz files |
pattern |
A pattern to filter files in a folder. E.g. R2 |
the number of sequences
Adrien Taudière
count_seq(file_path = system.file(
"extdata",
"ex.fasta",
package = "MiscMetabar",
mustWork = TRUE
))
count_seq(
folder_path = system.file("extdata", package = "MiscMetabar"),
pattern = "*.fasta"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.