Reads a FASTA file. This is the FASTA parser for metacoder. It simply tries
to read a FASTA file into a named character vector with minimal fuss. It does
not do any checks for valid characters etc. Other FASTA parsers you might
want to consider include read.FASTA or
read.fasta.
Usage
read_fasta(file_path)
Value
named character vector
Arguments
file_path
(character of length 1) The path to a file to read.
# Get example FASTA filefasta_path <- system.file(file.path("extdata", "silva_subset.fa"),
package = "metacoder")
# Read fasta filemy_seqs <- read_fasta(fasta_path)