Example #1
0
PepData create5PeptideData()
{
    using Peptide::Formula;
    PepData peptides;
    peptides.push_back(make_pair("Angiotensin II", Formula(50, 71, 13, 12)));
    peptides.push_back(make_pair("Bombesin", Formula(71, 110, 24, 18, 1)));
    peptides.push_back(make_pair("Substance P", Formula(63, 98, 18, 13, 1)));
    peptides.push_back(make_pair("Neurotensin", Formula(78, 121, 21, 20)));
    peptides.push_back(make_pair("Alpha1-6", Formula(45, 59, 11, 8)));
    return peptides; 
}