clauswilke / PeptideBuilder

A simple Python library to generate model peptides
MIT License
79 stars 30 forks source link

Simplify unit tests #40

Closed clauswilke closed 4 years ago

clauswilke commented 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)
clauswilke commented 4 years ago

Closed via https://github.com/clauswilke/PeptideBuilder/commit/94cbc8ee0100912df8bf83430ea82848ba6e2294.