32 using namespace eharmony;
33 using namespace pwiz::util;
35 boost::shared_ptr<SpectrumQuery>
generateSpectrumQuery(
const string& sequence,
const double& mass,
const int& charge,
const double& rt)
38 result->precursorNeutralMass = mass;
39 result->assumedCharge = charge;
40 result->retentionTimeSec = rt;
41 result->searchResult.searchHit.peptide = sequence;
42 result->searchResult.searchHit.analysisResult.peptideProphetResult.probability = 1.0;
58 vector<boost::shared_ptr<SpectrumQuery> > first;
69 vector<boost::shared_ptr<SpectrumQuery> > second;
76 vector<boost::shared_ptr<SpectrumQuery> > third;
81 vector<boost::shared_ptr<SpectrumQuery> > fourth;
84 PidfPtr pidf1(
new PeptideID_dataFetcher(first));
85 PidfPtr pidf2(
new PeptideID_dataFetcher(second));
86 PidfPtr pidf3(
new PeptideID_dataFetcher(third));
87 PidfPtr pidf4(
new PeptideID_dataFetcher(fourth));
89 boost::shared_ptr<AMTContainer> amt1(
new AMTContainer());
92 boost::shared_ptr<AMTContainer> amt2(
new AMTContainer());
95 boost::shared_ptr<AMTContainer> amt3(
new AMTContainer());
98 boost::shared_ptr<AMTContainer> amt4(
new AMTContainer());
101 vector<boost::shared_ptr<AMTContainer> > result;
102 result.push_back(amt1);
103 result.push_back(amt2);
104 result.push_back(amt3);
105 result.push_back(amt4);
121 boost::shared_ptr<WeightedHammingDistance> whd(
new WeightedHammingDistance(entries));
122 NeighborJoiner nj(entries);
123 nj._attributes.push_back(whd);
124 nj.calculateDistanceMatrix();
137 int main(
int argc,
char* argv[])