TabularMSA.
dtype
¶Data type of the stored sequences.
State: Experimental as of 0.4.1.
Notes
This property is not writeable.
Examples
>>> from skbio import DNA, TabularMSA
>>> msa = TabularMSA([DNA('ACG'), DNA('AC-')])
>>> msa.dtype
<class 'skbio.sequence._dna.DNA'>
>>> msa.dtype is DNA
True