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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
// --------------------------------------------------------------------------
// 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: Stephan Aiche$
// $Authors: Ole Schulz-Trieglaff, Stephan Aiche, Chris Bielow $
// --------------------------------------------------------------------------
#include <iostream>
#include <string>
#include <OpenMS/APPLICATIONS/TOPPBase.h>
#include <OpenMS/FORMAT/FileHandler.h>
#include <OpenMS/FORMAT/FASTAFile.h>
#include <OpenMS/SYSTEM/StopWatch.h>
#include <OpenMS/SIMULATION/MSSim.h>
#include <OpenMS/SIMULATION/SimTypes.h>
// GSL includes (random number generation)
#include <gsl/gsl_rng.h>
#include <gsl/gsl_randist.h>
// file types
#include <OpenMS/FORMAT/DTA2DFile.h>
#include <OpenMS/FORMAT/MzXMLFile.h>
#include <OpenMS/FORMAT/MzMLFile.h>
#include <OpenMS/FORMAT/FeatureXMLFile.h>
#include <OpenMS/FORMAT/ConsensusXMLFile.h>
using namespace OpenMS;
using namespace std;
/**
@page UTILS_MSSimulator MSSimulator
@brief A highly configurable simulator for mass spectrometry experiments.
This implementation is described in
<p>
Bielow C, Aiche S, Andreotti S, Reinert K<br>
MSSimulator: Simulation of Mass Spectrometry Data<br>
Journal of Proteome Research (2011), DOI: 10.1021/pr200155f<br>
</p>
The most important features are:
<ul>
<li>Simulation of Capillary electrophoresis and HPLC as separation step</li>
<li>Simulation of MS spectra</li>
<li>Simulation of MS/MS spectra with configurable precursor-selection strategy</li>
<li>Simulation of iTRAQ labels</li>
<li>Simulation of different noise models and instrument types (resolution, peak shape)</li>
</ul>
Look at the INI file (via "MSSimulator -write_ini myini.ini") to see the available parameters and more functionality.
<h3>Input: FASTA files</h3>
Protein sequences can be provided as FASTA file.
We allow a special tag in the description of each entry to specify protein abundance.
If you want to create a complex FASTA file with a Gaussian protein abundance model in log space,
see our Python script shipping with your OpenMS installation (e.g., <OpenMS-dir>/share/OpenMS/examples/simulation/FASTAProteinAbundanceSampling.py).
It supports (random) sampling from a large FASTA file, protein weight filtering and adds an
intensity tag to each entry.
If multiplexed data is simulated (like SILAC or iTRAQ) you need to supply multiple FASTA input files.
For the label-free setting, all FASTA input files will be merged into one, before simulation.
<p>
For MS/MS simulation only a test model is shipped with %OpenMS.<br>
Please find trained models at: http://sourceforge.net/projects/open-ms/files/Supplementary/Simulation/.
</p>
To specify intensity values for certain proteins, add an abundance tag for the corresponding protein in the FASTA input file:<br>
- add '[# <key>=<value> #]' at the end of the > line to specify intensity
For RT control (disable digestion, to make this work!)
<ul>
<li> rt (subjected to small local error by randomization)
<li> RT (used as is without local error)
</ul>
e.g.
@code
>seq1 optional comment [# intensity=567.4 #]
ASQYLATARHGFLPRHRDTGILP
>seq2 optional comment [# intensity=117.4, RT=405.3 #]
QKRPSQRHGLATARHGTGGGDRA
@endcode
<B>The command line parameters of this tool are:</B>
@verbinclude UTILS_MSSimulator.cli
<B>INI file documentation of this tool:</B>
@htmlinclude UTILS_MSSimulator.html
*/
// We do not want this class to show up in the docu:
/// @cond TOPPCLASSES
class TOPPMSSimulator :
public TOPPBase
{
public:
TOPPMSSimulator() :
TOPPBase("MSSimulator", "A highly configurable simulator for mass spectrometry experiments.", false)
{
}
protected:
void registerOptionsAndFlags_()
{
// I/O settings
registerInputFileList_("in", "<files>", StringList::create(""), "Input protein sequences in FASTA format", true, false);
setValidFormats_("in", StringList::create("fasta"));
registerOutputFile_("out", "<file>", "", "output (simulated MS map) in mzML format", false);
setValidFormats_("out", StringList::create("mzML"));
registerOutputFile_("out_pm", "<file>", "", "output (simulated MS map) in mzML format (picked GT)", false);
setValidFormats_("out_pm", StringList::create("mzML"));
registerOutputFile_("out_fm", "<file>", "", "output (simulated MS map) in featureXML format", false);
setValidFormats_("out_fm", StringList::create("featureXML"));
registerOutputFile_("out_cm", "<file>", "", "output (simulated MS map) in consensusXML format (grouping charge variants from a parent peptide from ESI)", false);
setValidFormats_("out_cm", StringList::create("consensusXML"));
registerOutputFile_("out_lcm", "<file>", "", "output (simulated MS map) in consensusXML format (grouping labeled variants)", false);
setValidFormats_("out_lcm", StringList::create("consensusXML"));
registerOutputFile_("out_cntm", "<file>", "", "output (simulated MS map) in featureXML format (contaminants)", false);
setValidFormats_("out_cntm", StringList::create("featureXML"));
registerSubsection_("algorithm", "Algorithm parameters section");
}
Param getSubsectionDefaults_(const String & /*section*/) const
{
Param tmp;
tmp.insert("MSSim:", MSSim().getParameters());
// set parameters for the different types of random number generators
// we support one for the technical and one for the biological variability
tmp.setValue("RandomNumberGenerators:biological", "random", "Controls the 'biological' randomness of the generated data (e.g. systematic effects like deviations in RT). If set to 'random' each experiment will look different. If set to 'reproducible' each experiment will have the same outcome (given that the input data is the same).");
tmp.setValidStrings("RandomNumberGenerators:biological", StringList::create("reproducible,random"));
tmp.setValue("RandomNumberGenerators:technical", "random", "Controls the 'technical' randomness of the generated data (e.g. noise in the raw signal). If set to 'random' each experiment will look different. If set to 'reproducible' each experiment will have the same outcome (given that the input data is the same).");
tmp.setValidStrings("RandomNumberGenerators:technical", StringList::create("reproducible,random"));
tmp.setSectionDescription("RandomNumberGenerators", "Parameters for generating the random aspects (e.g. noise) in the simulated data. The generation is separated into two parts, the technical part, like noise in the raw signal, and the biological part, like systematic deviations in the predicted retention times.");
return tmp;
}
// Load proteins from FASTA file
void loadFASTA_(const String & filename, SampleProteins & proteins)
{
writeLog_(String("Loading sequence data from ") + filename + String(" ..."));
FASTAFile fastafile;
typedef std::vector<FASTAFile::FASTAEntry> FASTAdata;
FASTAdata fastadata;
// load FASTA file contents
fastafile.load(filename, fastadata);
// add data from file to protein storage
String::size_type index;
StringList valid_meta_values = StringList::create("intensity,RT,rt");
// re-parse FASTA description to obtain quantitation info
for (FASTAdata::iterator it = fastadata.begin(); it != fastadata.end(); ++it)
{
// remove all ambiguous characters from FASTA entry
// TODO: this is somehow problematic since we modify user input
it->sequence.remove('X');
it->sequence.remove('B');
it->sequence.remove('Z');
// parsed abundance
MetaInfoInterface data;
data.setMetaValue("intensity", 10000.0);
// Look for a relative quantity given in the comment line of a FASTA entry
// e.g. >BSA [#120]
index = (it->description).find("[#");
// if found, extract and set relative quantity accordingly
if (index != String::npos)
{
String::size_type index_end = (it->description).find(']', index);
if (index_end == String::npos) throw Exception::InvalidParameter(__FILE__, __LINE__, __PRETTY_FUNCTION__, "MSSimulator: Invalid entry (" + it->identifier + ") in FASTA file; abundance section has open tag '[#' but missing close tag ']'.");
//std::cout << (it->description).substr(index+2,index_end-index-2) << std::endl;
StringList meta_values = StringList::create((it->description).substr(index + 2, index_end - index - 3).removeWhitespaces(), ',');
for (Size i = 0; i < meta_values.size(); ++i)
{
StringList components;
meta_values[i].split('=', components);
if (components.size() != 2) throw Exception::InvalidParameter(__FILE__, __LINE__, __PRETTY_FUNCTION__, "MSSimulator: Invalid entry (" + it->identifier + ") in FASTA file; the component '" + meta_values[i] + "' is missing an assignment ('=').");
// check if component is known
if (!valid_meta_values.contains(components[0])) throw Exception::InvalidParameter(__FILE__, __LINE__, __PRETTY_FUNCTION__, "MSSimulator: Invalid entry (" + it->identifier + ") in FASTA file; the component '" + meta_values[i] + "' has an unsupported meta value.");
if (components[0] == "intensity" || String(components[0]).toUpper() == "RT")
{
data.setMetaValue(components[0], components[1].toDouble());
}
else
{
data.setMetaValue(components[0], components[1]);
}
}
}
proteins.push_back(make_pair(*it, data));
}
writeLog_(String("done (") + fastadata.size() + String(" protein(s) loaded)"));
}
ExitCodes main_(int, const char **)
{
//-------------------------------------------------------------
// parsing parameters
//-------------------------------------------------------------
// check if at least one output file is
if (getStringOption_("out") == ""
&& getStringOption_("out_pm") == ""
&& getStringOption_("out_fm") == ""
&& getStringOption_("out_cm") == ""
&& getStringOption_("out_lcm") == ""
&& getStringOption_("out_cntm") == "")
{
LOG_ERROR << "Error: At least one output file needs to specified!" << std::endl;
return MISSING_PARAMETERS;
}
MSSim ms_simulation;
ms_simulation.setParameters(getParam_().copy("algorithm:MSSim:", true));
// read proteins
SampleChannels channels;
StringList input_files = getStringList_("in");
for (Size i = 0; i < input_files.size(); ++i)
{
SampleProteins proteins;
loadFASTA_(input_files[i], proteins);
channels.push_back(proteins);
}
// initialize the random number generators
bool biological_random = getParam_().getValue("algorithm:RandomNumberGenerators:biological") == "random";
bool technical_random = getParam_().getValue("algorithm:RandomNumberGenerators:technical") == "random";
SimRandomNumberGenerator rnd_gen;
rnd_gen.initialize(biological_random, technical_random);
ms_simulation.setLogType(this->log_type_);
// start simulation
writeLog_("Starting simulation");
StopWatch w;
w.start();
ms_simulation.simulate(rnd_gen, channels);
w.stop();
writeLog_(String("Simulation took ") + String(w.getClockTime()) + String(" seconds"));
String outputfile_name = getStringOption_("out");
if (outputfile_name != "")
{
writeLog_(String("Storing simulated map in: ") + outputfile_name);
MzMLFile().store(outputfile_name, ms_simulation.getExperiment());
}
String pxml_out = getStringOption_("out_pm");
if (pxml_out != "")
{
writeLog_(String("Storing simulated features in: ") + pxml_out);
MzMLFile().store(pxml_out, ms_simulation.getPeakMap());
}
String fxml_out = getStringOption_("out_fm");
if (fxml_out != "")
{
writeLog_(String("Storing simulated features in: ") + fxml_out);
FeatureXMLFile().store(fxml_out, ms_simulation.getSimulatedFeatures());
}
String cxml_out = getStringOption_("out_cm");
if (cxml_out != "")
{
writeLog_(String("Storing charged consensus features in: ") + cxml_out);
ConsensusMap & charge_consensus = ms_simulation.getChargeConsensus();
charge_consensus.getFileDescriptions()[0].filename = fxml_out;
charge_consensus.getFileDescriptions()[0].size = ms_simulation.getSimulatedFeatures().size();
charge_consensus.getFileDescriptions()[0].unique_id = ms_simulation.getSimulatedFeatures().getUniqueId();
ConsensusXMLFile().store(cxml_out, charge_consensus);
}
String lcxml_out = getStringOption_("out_lcm");
if (lcxml_out != "")
{
writeLog_(String("Storing labeling consensus features in: ") + lcxml_out);
// set file name for all (sub)feature maps
ConsensusMap & labeling_consensus = ms_simulation.getLabelingConsensus();
for (ConsensusMap::FileDescriptions::Iterator fdI = labeling_consensus.getFileDescriptions().begin();
fdI != labeling_consensus.getFileDescriptions().end();
++fdI)
{
fdI->second.filename = fxml_out;
}
ConsensusXMLFile().store(lcxml_out, labeling_consensus);
}
String cntxml_out = getStringOption_("out_cntm");
if (cntxml_out != "")
{
writeLog_(String("Storing simulated contaminant features in: ") + cntxml_out);
FeatureXMLFile().store(cntxml_out, ms_simulation.getContaminants());
}
return EXECUTION_OK;
}
};
int main(int argc, const char ** argv)
{
TOPPMSSimulator tool;
return tool.main(argc, argv);
}
/// @endcond
|