skbio.alignment.TabularMSA.__copy__#
- TabularMSA.__copy__()[source]#
Return a shallow copy of this MSA.
- Returns:
- TabularMSA
Shallow copy of this MSA. Sequence objects will be shallow-copied.
See also
Examples
>>> import copy >>> from skbio import DNA, TabularMSA >>> msa = TabularMSA([DNA('ACG'), DNA('AC-')]) >>> msa_copy = copy.copy(msa) >>> msa_copy == msa True >>> msa_copy is msa False