Skip to content
Snippets Groups Projects
Commit e952b82b authored by Langella Olivier's avatar Langella Olivier
Browse files

get only amino acid sequence to compute number of theoretical peptides

parent 2bc5921b
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ unsigned int ProteinXtp::countTrypticPeptidesForPAI() const {
kinase.setTakeOnlyFirstWildcard(true);
DigestionHandler digestion;
pappso::ProteinSp protein = std::make_shared<const pappso::Protein>(*this);
pappso::ProteinSp protein = std::make_shared<const pappso::Protein>(this->getAccession(), this->getOnlyAminoAcidSequence());
kinase.eat(0,protein,false,digestion);
unsigned int count = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment