I imported an alignment in FASTA format into R
read.dna(file.choose(),format="fasta",skip=0)
My alignment looks something like this
Seq1 ATGCGGGAATGGACTCATGCATCG
Seq2 ATTCGATCTTGCTAGCTAGCTCGT
Seq3 ATATCGATGTCGATCGATCGACGA
If I want to call individual sequences from within this alignment (say Seq2 for example), what do I need to do ?
I don't know where
read.dna()
comes from (there are >6000 CRAN packages, and almost 1000 Bioconductor packages). You could use the Biostrings package andand do many useful things, including those described in the quick reference. If at the end you want a single character vector, then
or