find_fasta {concatipede} | R Documentation |
Find fasta files present in a folder
Description
Find fasta files present in a folder
Usage
find_fasta(dir, pattern = "\\.fa$|\\.fas$|\\.fasta$", exclude)
Arguments
dir |
Path to the directory which should be examined. If not provided,
the current working directory (as returned by |
pattern |
Regular expression used by |
exclude |
Optional regular expression used to exclude some filenames from the list of detected files. |
Value
A vector with the full paths to the found files.
Examples
# Get the directory containing the package example files
dir <- system.file("extdata", package = "concatipede")
# List the fasta files containing in that directory
find_fasta(dir)
# Exclude some files
find_fasta(dir, exclude = "COI")
[Package concatipede version 1.0.1 Index]