scikit-bio
skbio.io
skbio.sequence
skbio.alignment
skbio.tree
skbio.diversity
skbio.stats
skbio.embedding
skbio.table
skbio.metadata
skbio.workflow
skbio.util
TabularMSA.__iter__()
Iterate over sequences in the MSA.
Each sequence in the order they are stored in the MSA.
Examples
>>> from skbio import DNA, TabularMSA >>> msa = TabularMSA([DNA('ACG'), DNA('AC-')]) >>> for seq in msa: ... str(seq) 'ACG' 'AC-'
previous
skbio.alignment.TabularMSA.__gt__
next
skbio.alignment.TabularMSA.__le__