This PR has three minor compatibility improvements because of deprecated code:
getiterator() is deprecated from xml.etree.ElementTree. For more information, please see the description at lxml. This has now been replaced by the .iter() function.
Bio.Alphabet has been completely deprecated. For these three files, generic_dna and generic_protein were imported from Bio.Alphabet and never used. The import caused things to break. Removing the import statement removes this issue.
This PR has three minor compatibility improvements because of deprecated code:
getiterator()
is deprecated fromxml.etree.ElementTree
. For more information, please see the description at lxml. This has now been replaced by the.iter()
function.Bio.Alphabet has been completely deprecated. For these three files, generic_dna and generic_protein were imported from Bio.Alphabet and never used. The import caused things to break. Removing the import statement removes this issue.