-
Notifications
You must be signed in to change notification settings - Fork 32
PeptideCaps
dstoeckel edited this page Mar 16, 2015
·
2 revisions
BALL offers an PeptidCapProcessor that adds caps (ACE front, back NME) to a peptide.
import BALL
pb = BALL.PeptideBuilder("ARNDHPKLR")
db = BALL.FragmentDB("")
pb.setFragmentDB(db)
prot = pb.construct()
print prot.countAtoms()
pep = BALL.PeptidCapProcessor()
prot= pb.construct()
prot.apply(pep)
prot.countAtoms()