ProteoWizard
Functions | Variables
IOTest.cpp File Reference
#include "IO.hpp"
#include "Diff.hpp"
#include "TextWriter.hpp"
#include "examples.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"

Go to the source code of this file.

Functions

template<typename object_type >
void testObject (const object_type &a)
void testIdentifiable ()
void testIdentifiableParamContainer ()
void testCV ()
void testBibliographicReference ()
void testPerson ()
void testOrganization ()
void testContactRole ()
void testProvider ()
void testSample ()
void testAnalysisSoftware ()
void testAnalysisSampleCollection ()
void testDBSequence ()
void testModification ()
void testSubstitutionModification ()
void testPeptide ()
void testSequenceCollection ()
void testSpectrumIdentification ()
void testProteinDetection ()
void testAnalysisCollection ()
void testSearchModification ()
void testEnzyme ()
void testEnzymes ()
void testResidue ()
void testAmbiguousResidue ()
void testMassTable ()
void testFilter ()
void testSpectrumIdentificationProtocol ()
void testProteinDetectionProtocol ()
void testAnalysisProtocolCollection ()
void testSpectraData ()
void testSearchDatabase ()
void testSourceFile ()
void testInputs ()
void testMeasure ()
void testFragmentArray ()
void testIonType ()
void testPeptideEvidence ()
void testSpectrumIdentificationItem ()
void testSpectrumIdentificationResult ()
PeptideHypothesis testPeptideHypothesis ()
void testProteinDetectionHypothesis ()
void testProteinAmbiguityGroup ()
void testSpectrumIdentificationList ()
void testProteinDetectionList ()
void testAnalysisData ()
void testDataCollection ()
void testIdentData ()
void test ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

template<typename object_type >
void testObject ( const object_type &  a)

Definition at line 41 of file IOTest.cpp.

References diff(), os_, pwiz::identdata::IO::read(), unit_assert, and write().

Referenced by testAmbiguousResidue(), testAnalysisCollection(), testAnalysisData(), testAnalysisProtocolCollection(), testAnalysisSampleCollection(), testAnalysisSoftware(), testBibliographicReference(), testComponent(), testComponentList(), testContactRole(), testCV(), testCVParam(), testDataCollection(), testDataProcessing(), testDBSequence(), testEnzyme(), testEnzymes(), testFileDescription(), testFilter(), testFragmentArray(), testIdentData(), testIdentifiable(), testIdentifiableParamContainer(), testInputs(), testInstrumentConfiguration(), testIonType(), testMassTable(), testMeasure(), testModification(), testNamedParamContainer(), testOrganization(), testParamGroup(), testPeptide(), testPeptideEvidence(), testPeptideHypothesis(), testPerson(), testPrecursor(), testProcessingMethod(), testProduct(), testProteinAmbiguityGroup(), testProteinDetection(), testProteinDetectionHypothesis(), testProteinDetectionList(), testProteinDetectionProtocol(), testProvider(), testResidue(), testSample(), testScanSettings(), testSearchDatabase(), testSearchModification(), testSequenceCollection(), testSoftware(), testSourceFile(), testSpectraData(), testSpectrumIdentification(), testSpectrumIdentificationItem(), testSpectrumIdentificationList(), testSpectrumIdentificationProtocol(), testSpectrumIdentificationResult(), testSubstitutionModification(), and testUserParam().

{
if (os_) *os_ << "testObject(): " << typeid(a).name() << endl;
// write 'a' out to a stream
ostringstream oss;
XMLWriter writer(oss);
IO::write(writer, a);
if (os_) *os_ << oss.str() << endl;
// read 'b' in from stream
object_type b;
istringstream iss(oss.str());
IO::read(iss, b);
// compare 'a' and 'b'
if (diff && os_) *os_ << "diff:\n" << diff_string<TextWriter>(diff) << endl;
}
void testIdentifiable ( )

Definition at line 66 of file IOTest.cpp.

References pwiz::identdata::Identifiable::id, pwiz::identdata::Identifiable::name, os_, and testObject().

{
if (os_) *os_ << "testIdentifiable\n" ;
a.id = "id";
a.name = "name";
}
void testIdentifiableParamContainer ( )

Definition at line 78 of file IOTest.cpp.

References pwiz::identdata::IdentifiableParamContainer::id, MS_TIC, pwiz::identdata::IdentifiableParamContainer::name, os_, pwiz::data::ParamContainer::set(), testObject(), and pwiz::data::ParamContainer::userParams.

Referenced by test().

{
if (os_) *os_ << "testIdentifiableParamContainer\n" ;
a.id = "id";
a.name = "name";
a.set(MS_TIC, 123);
a.userParams.push_back(UserParam("abc", "123", "!@#"));
}
void testCV ( )

Definition at line 93 of file IOTest.cpp.

References pwiz::cv::CV::fullName, pwiz::cv::CV::id, os_, testObject(), pwiz::cv::CV::URI, and pwiz::cv::CV::version.

{
if (os_) *os_ << "testCV\n" ;
CV a;
a.URI = "abcd";
a.id = "efgh";
a.fullName = "ijkl";
a.version = "mnop";
}
void testBibliographicReference ( )
void testPerson ( )
void testOrganization ( )
void testContactRole ( )

Definition at line 168 of file IOTest.cpp.

References pwiz::identdata::ContactRole::contactPtr, pwiz::data::CVParam::cvid, MS_software_vendor, os_, and testObject().

{
if (os_) *os_ << "testContactRole\n" ;
a.contactPtr = ContactPtr(new Contact("ref"));
}
void testProvider ( )

Definition at line 180 of file IOTest.cpp.

References pwiz::identdata::Provider::contactRolePtr, MS_role_type, os_, and testObject().

{
if (os_) *os_ << "testProvider\n" ;
// Reduced to a previously tested object.
}
void testSample ( )

Definition at line 193 of file IOTest.cpp.

References pwiz::identdata::Sample::contactRole, MS_programmer, MS_septum, MS_software_vendor, os_, pwiz::data::ParamContainer::set(), pwiz::identdata::Sample::subSamples, and testObject().

{
if (os_) *os_ << "testSample\n" ;
Sample a;
// Reduced to a previously tested object.
a.contactRole.push_back(ContactRolePtr(new ContactRole(MS_software_vendor, ContactPtr(new Contact("abc")))));
a.contactRole.push_back(ContactRolePtr(new ContactRole(MS_programmer, ContactPtr(new Contact("def")))));
a.subSamples.push_back(SamplePtr(new Sample("subSample_ref")));
}
void testAnalysisSoftware ( )
void testAnalysisSampleCollection ( )

Definition at line 228 of file IOTest.cpp.

References os_, and testObject().

{
if (os_) *os_ << "testAnalysisSampleCollection\n" ;
SamplePtr b(new Sample());
b->subSamples.push_back(SamplePtr(new Sample("ref")));
}
void testDBSequence ( )
void testModification ( )
void testSubstitutionModification ( )
void testPeptide ( )
void testSequenceCollection ( )

Definition at line 308 of file IOTest.cpp.

References pwiz::identdata::SequenceCollection::dbSequences, pwiz::identdata::SequenceCollection::peptideEvidence, pwiz::identdata::SequenceCollection::peptides, and testObject().

{
a.dbSequences.push_back(DBSequencePtr(new DBSequence("db_id")));
a.peptides.push_back(PeptidePtr(new Peptide("pep_id")));
a.peptideEvidence.push_back(PeptideEvidencePtr(new PeptideEvidence("pe1")));
}
void testSpectrumIdentification ( )
void testProteinDetection ( )
void testAnalysisCollection ( )

Definition at line 353 of file IOTest.cpp.

References pwiz::identdata::ProteinDetection::activityDate, os_, pwiz::identdata::AnalysisCollection::proteinDetection, pwiz::identdata::AnalysisCollection::spectrumIdentification, and testObject().

{
if (os_) *os_ << "testAnalysisCollection\n" ;
SpectrumIdentificationPtr b(new SpectrumIdentification());
b->activityDate = "abc";
a.spectrumIdentification.push_back(b);
}
void testSearchModification ( )
void testEnzyme ( )
void testEnzymes ( )

Definition at line 405 of file IOTest.cpp.

References pwiz::identdata::Enzymes::enzymes, pwiz::identdata::Enzymes::independent, os_, and testObject().

{
if (os_) *os_ << "testEnzymes\n" ;
a.independent = "yes";
a.enzymes.push_back(EnzymePtr(new Enzyme()));
a.enzymes.back()->siteRegexp = "pxegeRetiS";
}
void testResidue ( )

Definition at line 419 of file IOTest.cpp.

References pwiz::identdata::Residue::code, pwiz::identdata::Residue::mass, os_, and testObject().

{
if (os_) *os_ << "testResidue\n" ;
a.code = 'A';
a.mass = 2;
}
void testAmbiguousResidue ( )
void testMassTable ( )

Definition at line 445 of file IOTest.cpp.

References pwiz::identdata::MassTable::ambiguousResidue, pwiz::identdata::MassTable::id, pwiz::identdata::MassTable::msLevel, pwiz::identdata::MassTable::residues, and testObject().

{
a.id = "id";
a.msLevel.push_back(1);
ResiduePtr b(new Residue());
b->code = 'B';
a.residues.push_back(b);
AmbiguousResiduePtr c(new AmbiguousResidue());
c->code = 'C';
a.ambiguousResidue.push_back(c);
}
void testFilter ( )
void testSpectrumIdentificationProtocol ( )

Definition at line 476 of file IOTest.cpp.

References pwiz::identdata::SpectrumIdentificationProtocol::additionalSearchParams, pwiz::identdata::SpectrumIdentificationProtocol::analysisSoftwarePtr, pwiz::data::CVParam::cvid, pwiz::identdata::SpectrumIdentificationProtocol::databaseFilters, pwiz::identdata::SpectrumIdentificationProtocol::enzymes, pwiz::identdata::SpectrumIdentificationProtocol::fragmentTolerance, pwiz::identdata::Identifiable::id, pwiz::identdata::Enzymes::independent, pwiz::identdata::SpectrumIdentificationProtocol::massTable, pwiz::identdata::SpectrumIdentificationProtocol::modificationParams, MS_DB_filter_taxonomy, MS_Mascot_SigThreshold, MS_ms_ms_search, MS_parent_mass_type_mono, MS_search_tolerance_plus_value, pwiz::identdata::SpectrumIdentificationProtocol::parentTolerance, pwiz::identdata::SpectrumIdentificationProtocol::searchType, pwiz::data::ParamContainer::set(), testObject(), pwiz::identdata::SpectrumIdentificationProtocol::threshold, and UO_dalton.

{
a.id = "id";
a.analysisSoftwarePtr = AnalysisSoftwarePtr(new AnalysisSoftware("ref"));
a.modificationParams.push_back(SearchModificationPtr(new SearchModification()));
a.enzymes.independent = "no";
a.massTable.push_back(MassTablePtr(new MassTable("MT_1")));
a.massTable.back()->msLevel.push_back(1);
a.massTable.back()->msLevel.push_back(2);
FilterPtr b(new Filter());
b->filterType.set(MS_DB_filter_taxonomy);
a.databaseFilters.push_back(b);
}
void testProteinDetectionProtocol ( )
void testAnalysisProtocolCollection ( )

Definition at line 517 of file IOTest.cpp.

References pwiz::identdata::AnalysisProtocolCollection::proteinDetectionProtocol, pwiz::identdata::AnalysisProtocolCollection::spectrumIdentificationProtocol, and testObject().

{
SpectrumIdentificationProtocolPtr b(new SpectrumIdentificationProtocol());
b->analysisSoftwarePtr = AnalysisSoftwarePtr(new AnalysisSoftware("ref"));
ProteinDetectionProtocolPtr c(new ProteinDetectionProtocol());
c->analysisSoftwarePtr = AnalysisSoftwarePtr(new AnalysisSoftware("ref"));
a.proteinDetectionProtocol.push_back(c);
}
void testSpectraData ( )
void testSearchDatabase ( )
void testSourceFile ( )
void testInputs ( )

Definition at line 581 of file IOTest.cpp.

References pwiz::identdata::Inputs::searchDatabase, pwiz::identdata::Inputs::sourceFile, pwiz::identdata::Inputs::spectraData, and testObject().

{
Inputs a;
b->location = "blah";
a.sourceFile.push_back(b);
SearchDatabasePtr c(new SearchDatabase());
c->version = "1.0b";
a.searchDatabase.push_back(c);
SpectraDataPtr d(new SpectraData());
d->location = "bleh";
a.spectraData.push_back(d);
}
void testMeasure ( )
void testFragmentArray ( )

Definition at line 612 of file IOTest.cpp.

References pwiz::identdata::FragmentArray::measurePtr, testObject(), and pwiz::identdata::FragmentArray::values.

{
a.values.push_back(1.);
a.values.push_back(2.);
a.values.push_back(3.);
a.values.push_back(4.);
a.measurePtr = MeasurePtr(new Measure("ref"));
}
void testIonType ( )

Definition at line 626 of file IOTest.cpp.

References pwiz::identdata::IonType::charge, pwiz::data::CVParam::cvid, pwiz::identdata::IonType::fragmentArray, pwiz::identdata::IonType::index, MS_frag__a_ion, and testObject().

{
a.index.push_back(0);
a.index.push_back(1);
a.index.push_back(2);
a.index.push_back(3);
a.charge = 2;
FragmentArrayPtr b(new FragmentArray());
a.fragmentArray.push_back(b);
}
void testPeptideEvidence ( )
void testSpectrumIdentificationItem ( )
void testSpectrumIdentificationResult ( )
PeptideHypothesis testPeptideHypothesis ( )
void testProteinDetectionHypothesis ( )
void testProteinAmbiguityGroup ( )

Definition at line 736 of file IOTest.cpp.

References pwiz::identdata::IdentifiableParamContainer::id, MS_Mascot_score, pwiz::identdata::ProteinAmbiguityGroup::proteinDetectionHypothesis, pwiz::data::ParamContainer::set(), and testObject().

{
a.id = "id";
ProteinDetectionHypothesisPtr b(new ProteinDetectionHypothesis());
b->dbSequencePtr = DBSequencePtr(new DBSequence("dbs_ref"));
a.set(MS_Mascot_score, "164.4");
}
void testSpectrumIdentificationList ( )
void testProteinDetectionList ( )
void testAnalysisData ( )

Definition at line 784 of file IOTest.cpp.

References MS_Mascot_score, pwiz::identdata::AnalysisData::proteinDetectionListPtr, pwiz::identdata::AnalysisData::spectrumIdentificationList, and testObject().

{
SpectrumIdentificationListPtr b(new SpectrumIdentificationList());
b->id = "id";
b->numSequencesSearched = 5;
a.proteinDetectionListPtr = ProteinDetectionListPtr(new ProteinDetectionList("id2"));
}
void testDataCollection ( )
void testIdentData ( )

Definition at line 816 of file IOTest.cpp.

References pwiz::identdata::IdentData::analysisCollection, pwiz::identdata::DataCollection::analysisData, pwiz::identdata::IdentData::dataCollection, pwiz::identdata::SequenceCollection::dbSequences, diff(), IgnoreAnalysisData, IgnoreSequenceCollection, pwiz::identdata::examples::initializeTiny(), os_, pwiz::identdata::SequenceCollection::peptideEvidence, pwiz::identdata::SequenceCollection::peptides, pwiz::identdata::AnalysisCollection::proteinDetection, pwiz::identdata::AnalysisData::proteinDetectionListPtr, pwiz::identdata::IO::read(), pwiz::identdata::IdentData::sequenceCollection, pwiz::identdata::AnalysisCollection::spectrumIdentification, pwiz::identdata::AnalysisData::spectrumIdentificationList, testObject(), unit_assert, and write().

{
// test ignoring sequence collection and analysis data
{
// write 'a' out to a stream
ostringstream oss;
XMLWriter writer(oss);
IO::write(writer, a);
if (os_) *os_ << oss.str() << endl;
// read 'b' in from stream
istringstream iss(oss.str());
// clear the original SequenceCollection
// clear the original analysis data
BOOST_FOREACH(SpectrumIdentificationPtr& si, a.analysisCollection.spectrumIdentification)
si->spectrumIdentificationListPtr.reset();
a.analysisCollection.proteinDetection = b.analysisCollection.proteinDetection = ProteinDetection();
a.dataCollection.analysisData.spectrumIdentificationList.clear();
a.dataCollection.analysisData.proteinDetectionListPtr.reset();
// compare 'a' and 'b'
if (diff && os_) *os_ << "diff:\n" << diff << endl;
}
}
void test ( )

Definition at line 860 of file IOTest.cpp.

References testAmbiguousResidue(), testAnalysisCollection(), testAnalysisData(), testAnalysisProtocolCollection(), testAnalysisSoftware(), testBibliographicReference(), testContactRole(), testCV(), testDataCollection(), testDBSequence(), testEnzyme(), testEnzymes(), testFilter(), testFragmentArray(), testIdentData(), testIdentifiable(), testIdentifiableParamContainer(), testInputs(), testIonType(), testMassTable(), testMeasure(), testModification(), testOrganization(), testPeptide(), testPeptideEvidence(), testPerson(), testProteinAmbiguityGroup(), testProteinDetection(), testProteinDetectionHypothesis(), testProteinDetectionList(), testProteinDetectionProtocol(), testProvider(), testResidue(), testSample(), testSearchDatabase(), testSearchModification(), testSequenceCollection(), testSourceFile(), testSpectraData(), testSpectrumIdentification(), testSpectrumIdentificationItem(), testSpectrumIdentificationList(), testSpectrumIdentificationProtocol(), testSpectrumIdentificationResult(), and testSubstitutionModification().

int main ( int  argc,
char *  argv[] 
)

Definition at line 910 of file IOTest.cpp.

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

{
TEST_PROLOG_EX(argc, argv, "_IdentData")
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
test();
if (os_) *os_ << "ok\n";
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 38 of file IOTest.cpp.