1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
// --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universitaet Berlin 2002-2013.
//
// This software is released under a three-clause BSD license:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of any author or any participating institution
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// For a full list of authors, refer to the file AUTHORS.
// --------------------------------------------------------------------------
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// --------------------------------------------------------------------------
// $Maintainer: Hannes Roest $
// $Authors: Hannes Roest $
// --------------------------------------------------------------------------
#include <OpenMS/ANALYSIS/OPENSWATH/ChromatogramExtractor.h>
#include <OpenMS/ANALYSIS/OPENSWATH/OpenSwathHelper.h>
#include <OpenMS/APPLICATIONS/TOPPBase.h>
#include <OpenMS/CONCEPT/Exception.h>
#include <OpenMS/FORMAT/TraMLFile.h>
#include <OpenMS/CONCEPT/ProgressLogger.h>
using namespace std;
#ifdef _OPENMP
#define IF_MASTERTHREAD if (omp_get_thread_num() ==0)
#else
#define IF_MASTERTHREAD
#endif
using namespace OpenMS;
//-------------------------------------------------------------
//Doxygen docu
//-------------------------------------------------------------
/**
@page TOPP_OpenSwathChromatogramExtractor OpenSwathChromatogramExtractor
@brief Extracts chromatograms (XICs) from a file containing spectra.
<CENTER>
<table>
<tr>
<td ALIGN = "center" BGCOLOR="#EBEBEB"> potential predecessor tools </td>
<td VALIGN="middle" ROWSPAN=2> \f$ \longrightarrow \f$ OpenSwathChromatogramExtractor \f$ \longrightarrow \f$</td>
<td ALIGN = "center" BGCOLOR="#EBEBEB"> potential successor tools </td>
</tr>
<tr>
<td VALIGN="middle" ALIGN = "center" ROWSPAN=1> @ref TOPP_FileFilter </td>
<td VALIGN="middle" ALIGN = "center" ROWSPAN=1> @ref TOPP_OpenSwathAnalyzer </td>
</tr>
</table>
</CENTER>
This module extracts ion traces (extracted ion chromatograms or XICs) from a
file containing spectra. The masses at which the chromatograms should be
extracted are stored in a TraML file and the result is stored in a mzML file
holding chromatograms. This tool is designed to extract chromatogams from
SWATH (data independent acquisition) data (see ref[1]), thus it will extract
the masses found in the product ion section of the TraML transitions,
returning as many chromatograms as input transitions were provided.
For SWATH data, the "is_swath" flag which will check the precursor
isolation window of the first scan and assume all scans in that file were
recorded with this precursor window (thus making it necessary to provide one
input file per SWATH window). The module will then only extract transitions
whose precursors fall into the corresponding isolation window.
For the extraction method, two convolution functions are available: top-hat
and bartlett. While top-hat will just sum up the signal within a quadratic
window, bartlett will weigh the signal in the center of the window more than
the signal on the edge.
[1] Gillet LC, Navarro P, Tate S, Röst H, Selevsek N, Reiter L, Bonner R, Aebersold R. \n
<a href="http://dx.doi.org/10.1074/mcp.O111.016717"> Targeted data extraction of the MS/MS spectra generated by data-independent
acquisition: a new concept for consistent and accurate proteome analysis. </a> \n
Mol Cell Proteomics. 2012 Jun;11(6):O111.016717.
<B>The command line parameters of this tool are:</B>
@verbinclude TOPP_OpenSwathChromatogramExtractor.cli
<B>The algorithm parameters for the Analyzer filter are:</B>
@htmlinclude TOPP_OpenSwathChromatogramExtractor.html
*/
// We do not want this class to show up in the docu:
/// @cond TOPPCLASSES
class TOPPOpenSwathChromatogramExtractor
: public TOPPBase
{
public:
TOPPOpenSwathChromatogramExtractor()
: TOPPBase("OpenSwathChromatogramExtractor", "Extract chromatograms (XIC) from a MS2 map file.", true)
{
}
protected:
void registerOptionsAndFlags_()
{
registerInputFileList_("in", "<files>", StringList(), "Input files separated by blank");
setValidFormats_("in", StringList::create("mzML"));
registerInputFile_("tr", "<file>", "", "transition file ('TraML' or 'csv')");
setValidFormats_("tr", StringList::create("csv,traML"));
registerInputFile_("rt_norm", "<file>", "", "RT normalization file (how to map the RTs of this run to the ones stored in the library)", false);
setValidFormats_("rt_norm", StringList::create("trafoXML"));
registerOutputFile_("out", "<file>", "", "output file");
setValidFormats_("out", StringList::create("mzML"));
registerDoubleOption_("min_upper_edge_dist", "<double>", 0.0, "Minimal distance to the edge to still consider a precursor, in Thomson", false);
registerDoubleOption_("extraction_window", "<double>", 0.05, "Extraction window used (in Thomson, to use ppm see -ppm flag)", false);
registerDoubleOption_("rt_extraction_window", "<double>", -1, "Only extract RT around this value (-1 means extract over the whole range, a value of 500 means to extract around +/- 500 s of the expected elution).", false);
setMinFloat_("extraction_window", 0.0);
registerFlag_("is_swath", "Set this flag if the data is SWATH data");
registerFlag_("ppm", "extraction_window is in ppm");
registerStringOption_("extraction_function", "<name>", "tophat", "Function used to extract the signal", false);
StringList model_types;
model_types.push_back("tophat");
model_types.push_back("bartlett"); // bartlett if we use zeros at the end
setValidStrings_("extraction_function", model_types);
registerModelOptions_("linear");
}
void registerModelOptions_(const String & default_model)
{
registerTOPPSubsection_("model", "Options to control the modeling of retention time transformations from data");
registerStringOption_("model:type", "<name>", default_model, "Type of model", false);
StringList model_types;
TransformationDescription::getModelTypes(model_types);
if (!model_types.contains(default_model)) {
model_types.insert(model_types.begin(), default_model);
}
setValidStrings_("model:type", model_types);
registerFlag_("model:symmetric_regression", "Only for 'linear' model: Perform linear regression on 'y - x' vs. 'y + x', instead of on 'y' vs. 'x'.");
registerIntOption_("model:num_breakpoints", "<number>", 5,
"Only for 'b_spline' model: Number of breakpoints of the cubic spline in the smoothing step. The breakpoints are spaced uniformly on the retention time interval. More breakpoints mean less smoothing. Reduce this number if the transformation has an unexpected shape.",
false);
setMinInt_("model:num_breakpoints", 2);
registerStringOption_("model:interpolation_type", "<name>", "cspline", "Only for 'interpolated' model: Type of interpolation to apply.", false);
}
ExitCodes main_(int, const char **)
{
StringList file_list = getStringList_("in");
String tr_file_str = getStringOption_("tr");
String out = getStringOption_("out");
bool is_swath = getFlag_("is_swath");
bool ppm = getFlag_("ppm");
DoubleReal min_upper_edge_dist = getDoubleOption_("min_upper_edge_dist");
DoubleReal extraction_window = getDoubleOption_("extraction_window");
DoubleReal rt_extraction_window = getDoubleOption_("rt_extraction_window");
String extraction_function = getStringOption_("extraction_function");
// If we have a transformation file, trafo will transform the RT in the
// scoring according to the model. If we dont have one, it will apply the
// null transformation.
String trafo_in = getStringOption_("rt_norm");
TransformationDescription trafo;
if (trafo_in.size() > 0)
{
TransformationXMLFile trafoxml;
String model_type = getStringOption_("model:type");
Param model_params = getParam_().copy("model:", true);
trafoxml.load(trafo_in, trafo);
trafo.fitModel(model_type, model_params);
}
const char * tr_file = tr_file_str.c_str();
typedef MSExperiment<Peak1D> MapType;
MapType out_exp;
std::vector< OpenMS::MSChromatogram<> > chromatograms;
TraMLFile traml;
OpenMS::TargetedExperiment targeted_exp;
std::cout << "Loading TraML file" << std::endl;
traml.load(tr_file, targeted_exp);
std::cout << "Loaded TraML file" << std::endl;
// Do parallelization over the different input files
// Only in OpenMP 3.0 are unsigned loop variables allowed
#ifdef _OPENMP
#pragma omp parallel for
#endif
for (SignedSize i = 0; i < boost::numeric_cast<SignedSize>(file_list.size()); ++i)
{
MapType exp;
MzMLFile f;
// Logging and output to the console
// IF_MASTERTHREAD f.setLogType(log_type_);
// Find the transitions to extract and extract them
MapType tmp_out;
OpenMS::TargetedExperiment transition_exp_used;
f.load(file_list[i], exp);
bool do_continue = true;
if (is_swath)
{
do_continue = OpenSwathHelper::checkSwathMapAndSelectTransitions(exp, targeted_exp, transition_exp_used, min_upper_edge_dist);
}
else
{
transition_exp_used = targeted_exp;
}
#ifdef _OPENMP
#pragma omp critical (OpenSwathChromatogramExtractor_metadata)
#endif
// after loading the first file, copy the meta data from that experiment
// this may happen *after* chromatograms were already added to the output.
if (i == 0)
{
out_exp = exp;
out_exp.clear(false);
}
// continue if the map is not empty
if (do_continue)
{
std::cout << "Extracting " << transition_exp_used.getTransitions().size() << " transitions" << std::endl;
ChromatogramExtractor extractor;
IF_MASTERTHREAD extractor.setLogType(log_type_); // no progress log on the console in parallel
extractor.extractChromatograms(exp, tmp_out, transition_exp_used, extraction_window, ppm, trafo, rt_extraction_window, extraction_function);
// adding the chromatogram to the output needs to be atomic
#ifdef _OPENMP
#pragma omp critical (OpenSwathChromatogramExtractor_insert)
#endif
{
chromatograms.reserve(chromatograms.size() + distance(tmp_out.getChromatograms().begin(),tmp_out.getChromatograms().end()));
chromatograms.insert(chromatograms.end(), tmp_out.getChromatograms().begin(), tmp_out.getChromatograms().end());
}
} // end of do_continue
} // end of loop over all files / end of OpenMP
// TODO check that no chromatogram IDs occur multiple times !
// store the output
out_exp.setChromatograms(chromatograms);
MzMLFile mzf;
mzf.setLogType(log_type_);
addDataProcessing_(out_exp, getProcessingInfo_(DataProcessing::SMOOTHING));
mzf.store(out, out_exp);
return EXECUTION_OK;
}
};
int main(int argc, const char ** argv)
{
TOPPOpenSwathChromatogramExtractor tool;
return tool.main(argc, argv);
}
/// @endcond
|