76 template <
typename FeatureMapType>
77 void load(
const String& filename, FeatureMapType& feature_map)
87 if (it == input.
end())
return;
92 for (; it != input.
end(); ++it)
96 std::vector<String> parts;
97 line.
split(
'\t', parts);
101 throw Exception::ParseError(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION,
"",
String(
"Failed to convert line") +
String((it - input.
begin()) + 1) +
"not enough columns (expected 5 or more, got " +
String(parts.size()) +
")");
107 f.
setMZ(parts[0].toDouble());
108 f.
setRT(parts[1].toDouble() * 60.0);
117 feature_map.push_back(f);
128 template <
typename SpectrumType>
131 std::cerr <<
"Store() for SpecArrayFile 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:92
Not implemented exception.
Definition: Exception.h:430
Parse Error exception.
Definition: Exception.h:630
An LC-MS feature.
Definition: Feature.h:72
The representation of a 1D spectrum.
Definition: MSSpectrum.h:71
void setMZ(CoordinateType coordinate)
Mutable access to the m/z coordinate (index 1)
Definition: Peak2D.h:202
void setRT(CoordinateType coordinate)
Mutable access to the RT coordinate (index 0)
Definition: Peak2D.h:214
void setIntensity(IntensityType intensity)
Non-mutable access to the data point intensity (height)
Definition: Peak2D.h:172
File adapter for SpecArray (.pepList) files.
Definition: SpecArrayFile.h:61
SpecArrayFile()
Default constructor.
void store(const String &filename, const SpectrumType &spectrum) const
Stores a featureXML as a SpecArray file.
Definition: SpecArrayFile.h:129
virtual ~SpecArrayFile()
Destructor.
void load(const String &filename, FeatureMapType &feature_map)
Loads a SpecArray file into a featureXML.
Definition: SpecArrayFile.h:77
A more convenient string class.
Definition: String.h:61
bool split(const char splitter, std::vector< String > &substrings, bool quote_protect=false) const
Splits a string into substrings using splitter as delimiter.
This class provides some basic file handling methods for text files.
Definition: TextFile.h:47
std::vector< String >::const_iterator ConstIterator
Non-mutable iterator.
Definition: TextFile.h:56
ConstIterator end() const
Gives access to the underlying text buffer.
ConstIterator begin() const
Gives access to the underlying text buffer.
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47