49 template <
typename FeatureMapType>
50 void load(
const String& filename, FeatureMapType& feature_map)
59 bool first_line =
true;
65 if (line.empty() || line[0] ==
'#')
continue;
75 std::vector<String> parts;
76 line.
split(
'\t', parts);
78 if (parts.size() < 18)
80 throw Exception::ParseError(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"",
String(
"Failed to convert line ") +
String((it - input.
begin()) + 1) +
". Not enough columns (expected 18 or more, got " +
String(parts.size()) +
")");
85 Size column_to_convert = 0;
88 column_to_convert = 1;
90 column_to_convert = 2;
92 column_to_convert = 5;
94 column_to_convert = 6;
96 column_to_convert = 8;
99 column_to_convert = 3;
101 column_to_convert = 4;
103 column_to_convert = 7;
105 column_to_convert = 9;
107 column_to_convert = 10;
109 column_to_convert = 11;
111 column_to_convert = 12;
113 column_to_convert = 13;
115 column_to_convert = 14;
117 column_to_convert = 15;
119 column_to_convert = 16;
124 throw Exception::ParseError(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"",
String(
"Failed to convert value in column ") +
String(column_to_convert + 1) +
" into a number (line '" +
String((it - input.
begin()) + 1) +
")");
127 feature_map.push_back(f);
139 template <
typename SpectrumType>
142 std::cerr <<
"Store() for MsInspectFile not implemented. Filename was: " << filename <<
", spec of size " << spectrum.size() <<
"\n";
void setCharge(const ChargeType &ch)
Set charge state.
Exception base class.
Definition: Exception.h:63
Not implemented exception.
Definition: Exception.h:399
Parse Error exception.
Definition: Exception.h:579
An LC-MS feature.
Definition: Feature.h:46
void setOverallQuality(QualityType q)
Set the overall quality.
The representation of a 1D spectrum.
Definition: MSSpectrum.h:44
Definition: MsInspectFile.h:34
virtual ~MsInspectFile()
Destructor.
void store(const String &filename, const SpectrumType &spectrum) const
Stores a featureXML as a MsInspect file.
Definition: MsInspectFile.h:140
void load(const String &filename, FeatureMapType &feature_map)
Loads a MsInspect file into a featureXML.
Definition: MsInspectFile.h:50
MsInspectFile()
Default constructor.
void setMZ(CoordinateType coordinate)
Mutable access to the m/z coordinate (index 1)
Definition: Peak2D.h:178
void setRT(CoordinateType coordinate)
Mutable access to the RT coordinate (index 0)
Definition: Peak2D.h:190
void setIntensity(IntensityType intensity)
Sets data point intensity (height)
Definition: Peak2D.h:148
A more convenient string class.
Definition: String.h:34
bool split(const char splitter, std::vector< String > &substrings, bool quote_protect=false) const
Splits a string into substrings using splitter as delimiter.
Definition: TextFile.h:21
std::vector< String >::const_iterator ConstIterator
Non-mutable iterator.
Definition: TextFile.h:30
ConstIterator end() const
Gives access to the underlying text buffer.
ConstIterator begin() const
Gives access to the underlying text buffer.
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:97
static double toDouble(const String &this_s)
Definition: StringUtils.h:216
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19