read_fasta {metacoder} | R Documentation |
Read a FASTA file
Description
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)
Arguments
file_path |
( |
Value
named character
vector
Examples
# Get example FASTA file
fasta_path <- system.file(file.path("extdata", "silva_subset.fa"),
package = "metacoder")
# Read fasta file
my_seqs <- read_fasta(fasta_path)
[Package metacoder version 0.3.7 Index]