ProteoWizard
Classes | Functions | Variables
FeatureDetectorTuningTest.cpp File Reference
#include "PeakExtractor.hpp"
#include "PeakelGrower.hpp"
#include "PeakelPicker.hpp"
#include "pwiz/data/msdata/MSDataFile.hpp"
#include "pwiz/analysis/passive/MSDataCache.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "boost/filesystem/path.hpp"
#include "pwiz/utility/misc/Std.hpp"

Go to the source code of this file.

Classes

struct  SetRetentionTime

Functions

shared_ptr< PeakExtractorcreatePeakExtractor ()
vector< vector< Peak > > extractPeaks (const MSData &msd, const PeakExtractor &peakExtractor)
shared_ptr< PeakelGrowercreatePeakelGrower ()
void print (ostream &os, const string &label, vector< PeakelPtr > v)
void verifyBombesinPeakels (const PeakelField &peakelField)
shared_ptr< PeakelPickercreatePeakelPicker ()
void verifyBombesinFeatures (const FeatureField &featureField)
void testBombesin (const string &filename)
void test (const bfs::path &datadir)
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

shared_ptr<PeakExtractor> createPeakExtractor ( )

Definition at line 44 of file FeatureDetectorTuningTest.cpp.

References pwiz::analysis::PeakFinder_SNR::Config::windowRadius, pwiz::analysis::PeakFitter_Parabola::Config::windowRadius, and pwiz::analysis::PeakFinder_SNR::Config::zValueThreshold.

Referenced by testBombesin().

{
shared_ptr<NoiseCalculator> noiseCalculator(new NoiseCalculator_2Pass);
pfsnrConfig.windowRadius = 2;
pfsnrConfig.zValueThreshold = 3;
shared_ptr<PeakFinder> peakFinder(new PeakFinder_SNR(noiseCalculator, pfsnrConfig));
pfpConfig.windowRadius = 1; // (windowRadius != 1) is not good for real data
shared_ptr<PeakFitter> peakFitter(new PeakFitter_Parabola(pfpConfig));
return shared_ptr<PeakExtractor>(new PeakExtractor(peakFinder, peakFitter));
}
vector< vector<Peak> > extractPeaks ( const MSData msd,
const PeakExtractor peakExtractor 
)

Definition at line 70 of file FeatureDetectorTuningTest.cpp.

References pwiz::msdata::SpectrumInfo::data, pwiz::analysis::PeakExtractor::extractPeaks(), pwiz::analysis::MSDataCache::open(), os_, pwiz::msdata::SpectrumInfo::retentionTime, and pwiz::analysis::MSDataCache::spectrumInfo().

Referenced by testBombesin().

{
MSDataCache msdCache;
msdCache.open(msd);
const size_t spectrumCount = msdCache.size();
vector< vector<Peak> > result(spectrumCount);
for (size_t index=0; index<spectrumCount; index++)
{
const SpectrumInfo& spectrumInfo = msdCache.spectrumInfo(index, true);
vector<Peak>& peaks = result[index];
peakExtractor.extractPeaks(spectrumInfo.data, peaks);
for_each(peaks.begin(), peaks.end(), SetRetentionTime(spectrumInfo.retentionTime));
if (os_)
{
*os_ << "index: " << index << endl;
*os_ << "peaks: " << peaks.size() << endl;
copy(peaks.begin(), peaks.end(), ostream_iterator<Peak>(*os_, "\n"));
}
}
return result;
}
shared_ptr<PeakelGrower> createPeakelGrower ( )

Definition at line 98 of file FeatureDetectorTuningTest.cpp.

References pwiz::analysis::PeakelGrower_Proximity::Config::mzTolerance, and pwiz::analysis::PeakelGrower_Proximity::Config::rtTolerance.

Referenced by testBombesin().

{
config.mzTolerance = .01;
config.rtTolerance = 10; // seconds
return shared_ptr<PeakelGrower>(new PeakelGrower_Proximity(config));
}
void print ( ostream &  os,
const string &  label,
vector< PeakelPtr v 
)

Definition at line 108 of file FeatureDetectorTuningTest.cpp.

Referenced by verifyBombesinPeakels().

{
os << label << ":\n";
for (vector<PeakelPtr>::const_iterator it=v.begin(); it!=v.end(); ++it)
os << **it << endl;
}
void verifyBombesinPeakels ( const PeakelField peakelField)

Definition at line 116 of file FeatureDetectorTuningTest.cpp.

References pwiz::analysis::MZRTField< T >::find(), os_, print(), and unit_assert.

Referenced by testBombesin().

{
// TODO: assert # peaks/peakel, verify metadata
// charge state 2
vector<PeakelPtr> bombesin_2_0 = peakelField.find(810.41, .01, RTMatches_Contains<Peakel>(1870));
if (os_) print(*os_, "bombesin_2_0", bombesin_2_0);
unit_assert(bombesin_2_0.size() == 1);
vector<PeakelPtr> bombesin_2_1 = peakelField.find(810.91, .01, RTMatches_Contains<Peakel>(1870));
if (os_) print(*os_, "bombesin_2_1", bombesin_2_1);
unit_assert(bombesin_2_1.size() == 1);
vector<PeakelPtr> bombesin_2_2 = peakelField.find(811.41, .01, RTMatches_Contains<Peakel>(1870));
if (os_) print(*os_, "bombesin_2_2", bombesin_2_2);
unit_assert(bombesin_2_2.size() == 1);
vector<PeakelPtr> bombesin_2_3 = peakelField.find(811.91, .01, RTMatches_Contains<Peakel>(1870,10));
if (os_) print(*os_, "bombesin_2_3", bombesin_2_3);
unit_assert(bombesin_2_3.size() == 1);
// charge state 3
vector<PeakelPtr> bombesin_3_0 = peakelField.find(540.61, .01, RTMatches_Contains<Peakel>(1870));
if (os_) print(*os_, "bombesin_3_0", bombesin_3_0);
unit_assert(bombesin_3_0.size() == 1);
vector<PeakelPtr> bombesin_3_1 = peakelField.find(540.61 + 1./3., .02, RTMatches_Contains<Peakel>(1865));
if (os_) print(*os_, "bombesin_3_1", bombesin_3_1);
unit_assert(bombesin_3_1.size() == 1);
vector<PeakelPtr> bombesin_3_2 = peakelField.find(540.61 + 2./3., .02, RTMatches_Contains<Peakel>(1865,5));
if (os_) print(*os_, "bombesin_3_2", bombesin_3_2);
unit_assert(bombesin_3_2.size() == 1);
// TODO: verify peaks.size() == 1
}
shared_ptr<PeakelPicker> createPeakelPicker ( )

Definition at line 155 of file FeatureDetectorTuningTest.cpp.

References pwiz::analysis::PeakelPicker_Basic::Config::minMonoisotopicPeakelSize.

Referenced by testBombesin().

{
//config.log = os_;
return shared_ptr<PeakelPicker>(new PeakelPicker_Basic(config));
}
void verifyBombesinFeatures ( const FeatureField featureField)

Definition at line 165 of file FeatureDetectorTuningTest.cpp.

References epsilon, pwiz::analysis::MZRTField< T >::find(), unit_assert, and unit_assert_equal.

{
const double epsilon = .01;
const double mz_bomb2 = 810.415;
vector<FeaturePtr> bombesin_2_found = featureField.find(mz_bomb2, epsilon,
unit_assert(bombesin_2_found.size() == 1);
const Feature& bombesin_2 = *bombesin_2_found[0];
unit_assert(bombesin_2.charge == 2);
unit_assert(bombesin_2.peakels.size() == 5);
unit_assert_equal(bombesin_2.peakels[0]->mz, mz_bomb2, epsilon);
unit_assert_equal(bombesin_2.peakels[1]->mz, mz_bomb2+.5, epsilon);
unit_assert_equal(bombesin_2.peakels[2]->mz, mz_bomb2+1, epsilon);
unit_assert_equal(bombesin_2.peakels[3]->mz, mz_bomb2+1.5, epsilon);
unit_assert_equal(bombesin_2.peakels[4]->mz, mz_bomb2+2, epsilon);
//TODO: verify feature metadata
const double mz_bomb3 = 540.612;
vector<FeaturePtr> bombesin_3_found = featureField.find(mz_bomb3, epsilon,
unit_assert(bombesin_3_found.size() == 1);
const Feature& bombesin_3 = *bombesin_3_found[0];
unit_assert(bombesin_3.charge == 3);
unit_assert(bombesin_3.peakels.size() == 3);
unit_assert_equal(bombesin_3.peakels[0]->mz, mz_bomb3, epsilon);
unit_assert_equal(bombesin_3.peakels[1]->mz, mz_bomb3+1./3, epsilon);
unit_assert_equal(bombesin_3.peakels[2]->mz, mz_bomb3+2./3, epsilon);
//TODO: verify feature metadata
}
void testBombesin ( const string &  filename)

Definition at line 197 of file FeatureDetectorTuningTest.cpp.

References createPeakelGrower(), createPeakelPicker(), createPeakExtractor(), extractPeaks(), os_, pwiz::msdata::MSData::run, pwiz::msdata::Run::spectrumListPtr, unit_assert, verifyBombesinFeatures(), and verifyBombesinPeakels().

{
if (os_) *os_ << "testBombesin()" << endl;
// open data file and check sanity
MSDataFile msd(filename);
unit_assert(msd.run.spectrumListPtr.get());
unit_assert(msd.run.spectrumListPtr->size() == 8);
// instantiate PeakExtractor and extract peaks
shared_ptr<PeakExtractor> peakExtractor = createPeakExtractor();
vector< vector<Peak> > peaks = extractPeaks(msd, *peakExtractor);
unit_assert(peaks.size() == 8);
// grow peakels
shared_ptr<PeakelGrower> peakelGrower = createPeakelGrower();
PeakelField peakelField;
peakelGrower->sowPeaks(peakelField, peaks);
if (os_) *os_ << "peakelField:\n" << peakelField << endl;
verifyBombesinPeakels(peakelField);
// pick peakels
shared_ptr<PeakelPicker> peakelPicker = createPeakelPicker();
FeatureField featureField;
peakelPicker->pick(peakelField, featureField);
if (os_) *os_ << "featureField:\n" << featureField << endl;
verifyBombesinFeatures(featureField);
}
void test ( const bfs::path &  datadir)

Definition at line 232 of file FeatureDetectorTuningTest.cpp.

References testBombesin().

{
testBombesin((datadir / "FeatureDetectorTest_Bombesin.mzML").string());
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 238 of file FeatureDetectorTuningTest.cpp.

References e(), os_, test(), TEST_EPILOG, TEST_FAILED, and TEST_PROLOG.

{
TEST_PROLOG(argc, argv)
try
{
bfs::path datadir = ".";
for (int i=1; i<argc; i++)
{
if (!strcmp(argv[i],"-v"))
os_ = &cout;
else
// hack to allow running unit test from a different directory:
// Jamfile passes full path to specified input file.
// we want the path, so we can ignore filename
datadir = bfs::path(argv[i]).branch_path();
}
test(datadir);
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 41 of file FeatureDetectorTuningTest.cpp.