| 780 | |
| 781 | |
| 782 | void PeptideProteinResolution::run(vector<ProteinIdentification>& inferred_protein_ids, |
| 783 | vector<PeptideIdentification>& inferred_peptide_ids) |
| 784 | { |
| 785 | PeptideProteinResolution ppr; |
| 786 | ppr.buildGraph(inferred_protein_ids[0], inferred_peptide_ids); |
| 787 | ppr.resolveGraph(inferred_protein_ids[0], inferred_peptide_ids); |
| 788 | IDFilter::removeUnreferencedProteins(inferred_protein_ids, inferred_peptide_ids); |
| 789 | IDFilter::updateProteinGroups(inferred_protein_ids[0].getIndistinguishableProteins(), inferred_protein_ids[0].getHits()); |
| 790 | IDFilter::updateProteinGroups(inferred_protein_ids[0].getProteinGroups(), inferred_protein_ids[0].getHits()); |
| 791 | } |
| 792 | |
| 793 | } |
| 794 |
nothing calls this directly
no test coverage detected