Closed clauswilke closed 4 years ago
The unit tests have constructs of the form:
for aa in "CDEFGHIKLMNPQRSTVWY": structure = PeptideBuilder.add_residue(structure, aa)
They can all be simplified to:
for aa in "CDEFGHIKLMNPQRSTVWY": PeptideBuilder.add_residue(structure, aa)
Closed via https://github.com/clauswilke/PeptideBuilder/commit/94cbc8ee0100912df8bf83430ea82848ba6e2294.
The unit tests have constructs of the form:
They can all be simplified to: