OpenMS  2.6.0
OpenSwathOSWWriter.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2020.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: George Rosenberger $
32 // $Authors: George Rosenberger $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // Interfaces
39 
41 
43 
44 #include <fstream>
45 
46 namespace OpenMS
47 {
48 
115  class OPENMS_DLLAPI OpenSwathOSWWriter
116  {
120  bool doWrite_;
122  bool sonar_;
124 
125  public:
126 
127  OpenSwathOSWWriter(const String& output_filename,
128  const String& input_filename = "inputfile",
129  bool ms1_scores = false,
130  bool sonar = false,
131  bool uis_scores = false) :
132  output_filename_(output_filename),
133  input_filename_(input_filename),
134  run_id_(OpenMS::UniqueIdGenerator::getUniqueId()),
135  doWrite_(!output_filename.empty()),
136  use_ms1_traces_(ms1_scores),
137  sonar_(sonar),
138  enable_uis_scoring_(uis_scores)
139  {}
140 
141  bool isActive() const;
142 
147  void writeHeader();
148 
160  String getScore(const Feature& feature, std::string score_name) const;
161 
173  std::vector<String> getSeparateScore(const Feature& feature, std::string score_name) const;
174 
189  String prepareLine(const OpenSwath::LightCompound& /* pep */,
190  const OpenSwath::LightTransition* /* transition */,
191  FeatureMap& output, String id) const;
192 
206  void writeLines(const std::vector<String>& to_osw_output);
207 
208  };
209 
210 }
211 
OpenMS::TOPPBase
Base class for TOPP applications.
Definition: TOPPBase.h:144
OpenMS::SqMassFile::transform
void transform(const String &filename_in, Interfaces::IMSDataConsumer *consumer, bool skip_full_count=false, bool skip_first_pass=false)
OpenMS::FileTypes::SQMASS
SqLite format for mass and chromatograms, see SqMassFile.
Definition: FileTypes.h:103
FileHandler.h
FileTypes.h
MapType
PeakMap MapType
Definition: PeakPickerIterative.cpp:84
OpenMS::UInt64
OPENMS_UINT64_TYPE UInt64
Unsigned integer type (64bit)
Definition: Types.h:77
OpenMS::SqMassFile::store
void store(const String &filename, MapType &map)
OpenMS::Internal::CachedMzMLHandler::readMemdump
void readMemdump(MapType &exp_reading, String filename) const
Read all spectra from a dump from the disk.
OpenMS::FileHandler::getTypeByFileName
static FileTypes::Type getTypeByFileName(const String &filename)
Determines the file type from a file name.
OpenMS::MzMLFile::store
void store(const String &filename, const PeakMap &map) const
Stores a map in an MzML file.
OpenMS::FileTypes::MZML
MzML file (.mzML)
Definition: FileTypes.h:72
OpenMS::OpenSwathOSWWriter::run_id_
OpenMS::UInt64 run_id_
Definition: OpenSwathOSWWriter.h:119
OpenMS::MzMLFile
File adapter for MzML files.
Definition: MzMLFile.h:55
OpenMS::String
A more convenient string class.
Definition: String.h:59
MSDataSqlConsumer.h
OpenMS::OpenSwathOSWWriter
Class to write out an OpenSwath OSW SQLite output (PyProphet input).
Definition: OpenSwathOSWWriter.h:115
MzMLFile.h
TransitionExperiment.h
OpenMS::OpenSwathOSWWriter::doWrite_
bool doWrite_
Definition: OpenSwathOSWWriter.h:120
OpenMS::MSExperiment
In-Memory representation of a mass spectrometry experiment.
Definition: MSExperiment.h:77
OpenMS::Size
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
OpenMS::OpenSwathOSWWriter::OpenSwathOSWWriter
OpenSwathOSWWriter(const String &output_filename, const String &input_filename="inputfile", bool ms1_scores=false, bool sonar=false, bool uis_scores=false)
Definition: OpenSwathOSWWriter.h:127
MSDataCachedConsumer.h
OpenMS::SqMassFile::SqMassConfig::write_full_meta
bool write_full_meta
write full meta data
Definition: SqMassFile.h:63
OpenMS::FileTypes::UNKNOWN
Unknown file extension.
Definition: FileTypes.h:60
OpenMS::Internal::CachedMzMLHandler::writeMetadata
void writeMetadata(MapType exp, String out_meta, bool addCacheMetaValue=false)
Write only the meta data of an MSExperiment.
OpenMS::MSExperiment::size
Size size() const
Definition: MSExperiment.h:127
OpenMS::ChromatogramSettings::getDataProcessing
std::vector< DataProcessingPtr > & getDataProcessing()
returns a mutable reference to the description of the applied processing
CachedMzML.h
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
OpenSwath::LightCompound
Definition: TransitionExperiment.h:149
UniqueIdGenerator.h
OpenMS::MetaInfoInterface::removeMetaValue
void removeMetaValue(const String &name)
Removes the DataValue corresponding to name if it exists.
OpenMS::MSDataCachedConsumer
Transforming and cached writing consumer of MS data.
Definition: MSDataCachedConsumer.h:54
OpenMS::ProgressLogger
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:54
OpenMS::MSExperiment::getChromatograms
const std::vector< MSChromatogram > & getChromatograms() const
returns the chromatogram list
ProgressLogger.h
OpenMS::MzMLFile::load
void load(const String &filename, PeakMap &map)
Loads a map from a MzML file. Spectra and chromatograms are sorted by default (this can be disabled u...
OpenMS::MSDataSqlConsumer
A data consumer that inserts MS data into a SQLite database.
Definition: MSDataSqlConsumer.h:60
CachedMzMLHandler.h
int
OpenMS::FileHandler
Facilitates file handling by file type recognition.
Definition: FileHandler.h:62
FeatureMap.h
OpenMS::FileTypes::Type
Type
Actual file types enum.
Definition: FileTypes.h:58
OpenMS::SqMassFile::SqMassConfig::linear_fp_mass_acc
double linear_fp_mass_acc
desired mass accuracy for numpress linear encoding (-1 no effect, use 0.0001 for 0....
Definition: SqMassFile.h:65
OpenMS::MSExperiment::setChromatograms
void setChromatograms(const std::vector< MSChromatogram > &chromatograms)
sets the chromatogram list
OpenMS::SqMassFile::SqMassConfig::use_lossy_numpress
bool use_lossy_numpress
use lossy numpress compression
Definition: SqMassFile.h:64
OpenMS::MSExperiment::getNrChromatograms
Size getNrChromatograms() const
get the total number of chromatograms available
OpenMS::OpenSwathOSWWriter::input_filename_
String input_filename_
Definition: OpenSwathOSWWriter.h:118
OpenMS::FileHandler::getType
static FileTypes::Type getType(const String &filename)
Tries to determine the file type (by name or content)
OpenMS::Internal::CachedMzMLHandler::writeMemdump
void writeMemdump(const MapType &exp, const String &out) const
Write complete spectra as a dump to the disk.
OpenMS::OpenSwathOSWWriter::output_filename_
String output_filename_
Definition: OpenSwathOSWWriter.h:117
OpenMS::SqMassFile::load
void load(const String &filename, MapType &map)
OpenMS::OpenSwathOSWWriter::sonar_
bool sonar_
Definition: OpenSwathOSWWriter.h:122
OpenMS::SqMassFile::SqMassConfig
Configuration class for SqMassFile.
Definition: SqMassFile.h:61
main
int main(int argc, const char **argv)
Definition: INIFileEditor.cpp:73
OpenMS::OpenSwathOSWWriter::enable_uis_scoring_
bool enable_uis_scoring_
Definition: OpenSwathOSWWriter.h:123
OpenMS::FeatureMap
A container for features.
Definition: FeatureMap.h:97
OpenMS::Feature
An LC-MS feature.
Definition: Feature.h:70
OpenMS::PlainMSDataWritingConsumer
Consumer class that writes MS data to disk using the mzML format.
Definition: MSDataWritingConsumer.h:240
OpenMS::MSExperiment::getChromatogram
MSChromatogram & getChromatogram(Size id)
returns a single chromatogram
OpenMS::UniqueIdGenerator
A generator for unique ids.
Definition: UniqueIdGenerator.h:59
OpenMS::MzMLFile::transform
void transform(const String &filename_in, Interfaces::IMSDataConsumer *consumer, bool skip_full_count=false, bool skip_first_pass=false)
Transforms a map while loading using the supplied MSDataConsumer.
OpenMS::PeakFileOptions
Options for loading files containing peak data.
Definition: PeakFileOptions.h:47
OpenMS::FileTypes::nameToType
static Type nameToType(const String &name)
Converts a file type name into a Type.
SqMassFile.h
MSDataWritingConsumer.h
OpenMS::SqMassFile::setConfig
void setConfig(SqMassConfig config)
Definition: SqMassFile.h:95
OpenSwath::LightTransition
Definition: TransitionExperiment.h:46
OpenMS::MzMLFile::setOptions
void setOptions(const PeakFileOptions &)
set options for loading/storing
OpenMS::PeakFileOptions::setMaxDataPoolSize
void setMaxDataPoolSize(Size size)
Set maximal size of the data pool.
OpenMS::OpenSwathOSWWriter::use_ms1_traces_
bool use_ms1_traces_
Definition: OpenSwathOSWWriter.h:121
OpenMS::Internal::CachedMzMLHandler
An class that uses on-disk caching to read and write spectra and chromatograms.
Definition: CachedMzMLHandler.h:66
OpenMS::MzMLFile::getOptions
PeakFileOptions & getOptions()
Mutable access to the options for loading/storing.
OpenMS::ProgressLogger::setLogType
void setLogType(LogType type) const
Sets the progress log that should be used. The default type is NONE!
TOPPBase.h
OpenMS::SqMassFile
An class that uses on-disk SQLite database to read and write spectra and chromatograms.
Definition: SqMassFile.h:52
OpenMS::FileTypes::typeToName
static String typeToName(Type type)
Returns the name/extension of the type.