View source: R/rm.sequence.fasta.R
rm.sequence.fasta | R Documentation |
Delete sequences from fasta file
rm.sequence.fasta(infile, outfile = "sequence.removed.fasta", to.rm = NULL)
infile |
Character string representing the name of the fasta file. |
outfile |
Character string representing the name of the output fasta file. |
to.rm |
Vector of character string containing the names of sequences to be deleted. |
Delete sequences from a fasta file.
This is a subroutine without return value.
Jinlong Zhang <jinlongzhang01@gmail.com>
http://www.genomatix.de/online_help/help/sequence_formats.html
read.fasta
, dat2fasta
cat(
">seq_1", "---TCCGCCCCCCTACTCTA",
">seq_3", "CTCTCCGCCCCTCTACTCTA",
">seq_5", "---TCCGCCC-TTTACTCTA",
">seq_6", "---TCCGCCCCTCTACTCTA",
">seq_9", "---TCCGCCC-TCTACTCTA",
">seq_12", "CTCTCCGCCC-TCTACTCTA",
file = "trn2.fasta", sep = "\n")
rm.sequence.fasta(infile = "trn2.fasta", to.rm = c("seq_1","seq_12"))
unlink("trn2.fasta")
unlink("sequence.removed.fasta")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.