Open raphaeltrevizani opened 1 year ago
The following has been deprecated from the BioPython repo from Bio.SubsMat.MatrixInfo import blosum62 One way to fix it is to replace with
from Bio.SubsMat.MatrixInfo import blosum62
# from Bio.SubsMat.MatrixInfo import blosum62 from Bio.Align import substitution_matrices blosum62 = substitution_matrices.load("BLOSUM62")
Is this correct?
I haven't tried it but it looks correct. Thanks!
The following has been deprecated from the BioPython repo
from Bio.SubsMat.MatrixInfo import blosum62
One way to fix it is to replace withIs this correct?