30 #include <boost/iostreams/filtering_stream.hpp>
31 #include <boost/iostreams/filter/gzip.hpp>
32 #include <boost/iostreams/device/file_descriptor.hpp>
33 #include <boost/iostreams/copy.hpp>
37 using namespace pwiz::msdata;
38 using namespace pwiz::util;
74 const string& filename =
"temp.RAMPAdapterTest.tiny.mzML";
84 os <<
"seqNum: " << header.
seqNum << endl;
86 os <<
"msLevel: " << header.
msLevel << endl;
87 os <<
"peaksCount: " << header.
peaksCount << endl;
90 os <<
"basePeakMZ: " << header.
basePeakMZ << endl;
94 os <<
"lowMZ: " << header.
lowMZ << endl;
95 os <<
"highMZ: " << header.
highMZ << endl;
97 os <<
"precursorMZ: " << header.
precursorMZ << endl;
100 os <<
"scanType: " << header.
scanType << endl;
101 os <<
"mergedScan: " << header.
mergedScan << endl;
112 os <<
"scanCount: " << header.
scanCount << endl;
113 os <<
"lowMZ: " << header.
lowMZ << endl;
114 os <<
"highMZ: " << header.
highMZ << endl;
115 os <<
"startMZ: " << header.
startMZ << endl;
116 os <<
"endMZ: " << header.
endMZ << endl;
117 os <<
"dStartTime: " << header.
dStartTime << endl;
118 os <<
"dEndTime: " << header.
dEndTime << endl;
125 os <<
"manufacturer: " << instrument.
manufacturer << endl;
126 os <<
"model: " << instrument.
model << endl;
127 os <<
"ionisation: " << instrument.
ionisation << endl;
128 os <<
"analyzer: " << instrument.
analyzer << endl;
129 os <<
"detector: " << instrument.
detector << endl;
134 void test(
const string& filename)
139 if (
os_) *
os_ <<
"scanCount: " << scanCount <<
"\n\n";
166 vector<double> peaks;
172 copy(begin, begin+15, ostream_iterator<MZIntensityPair>(*
os_,
"\n"));
203 copy(begin, begin+10, ostream_iterator<MZIntensityPair>(*
os_,
"\n"));
226 *
os_ <<
"RunHeader:\n" << runHeader << endl;
232 *
os_ <<
"Instrument:\n" << instrument << endl;
245 std::string buildparent(test_app_name);
246 size_t pos = buildparent.find(
"build");
247 if (pos == std::string::npos) {
248 buildparent = __FILE__;
250 pos = buildparent.rfind(
"pwiz");
252 buildparent.resize(pos);
253 std::string example_data_dir = buildparent +
"example_data/";
254 RAMPAdapter adapter_1_0(example_data_dir +
"tiny.pwiz.1.0.mzML");
255 const char *testfiles[2] = {
"tiny.pwiz.1.1.mzML",
"tiny.pwiz.mzXML"};
256 for (
int tf=2;tf--;) {
257 RAMPAdapter adapter_1_1(example_data_dir + testfiles[tf]);
261 for (
int scan=4;scan--;) {
284 int main(
int argc,
char* argv[])
290 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
295 string gzfilename = filename +
".gz";
296 bio::filtering_istream tinyGZ(bio::gzip_compressor() | bio::file_descriptor_source(filename));
297 bio::copy(tinyGZ, bio::file_descriptor_sink(gzfilename, ios::out|ios::binary));
300 boost::filesystem::remove(filename);
301 boost::filesystem::remove(gzfilename);