Using biopython 1.79 and higher raise error:
AttributeError: 'Seq' object has no attribute 'tomutable'
and
AttributeError: 'MutableSeq' object has no attribute 'toseq'
to solve it four replacements are needed in SequenceContainer.py according to the biopython note:
Instead of myseq.tomutable() or mymutableseq.toseq(), you should now use
Bio.Seq.MutableSeq(myseq) or Bio.Seq.Seq(mymutableseq), respectively.
Using biopython 1.79 and higher raise error: AttributeError: 'Seq' object has no attribute 'tomutable' and AttributeError: 'MutableSeq' object has no attribute 'toseq'
to solve it four replacements are needed in SequenceContainer.py according to the biopython note: Instead of myseq.tomutable() or mymutableseq.toseq(), you should now use Bio.Seq.MutableSeq(myseq) or Bio.Seq.Seq(mymutableseq), respectively.