11#include <OpenMS/config.h>
22 class PeakFileOptions;
27 class TargetedExperiment;
28 class ProteinIdentification;
29 class PeptideIdentificationList;
175 void loadExperiment(
const std::string& filename,
PeakMap& exp,
const std::vector<FileTypes::Type> allowed_types = std::vector<FileTypes::Type>(),
177 const bool compute_hash =
false);
391 const std::string& filename,
394 std::vector<ProteinIdentification>& prot_ids,
397 const std::string& contact_name =
"",
398 const std::string& contact_address =
"",
399 const std::string& description =
"",
400 const std::string& label =
"label",
401 const bool remove_duplicate_features =
false,
402 const std::vector<FileTypes::Type> allowed_types = {});
A container for consensus elements.
Definition ConsensusMap.h:67
Options for loading files containing features.
Definition FeatureFileOptions.h:35
A container for features.
Definition FeatureMap.h:78
Facilitates file handling by file type recognition.
Definition FileHandler.h:45
static bool isSupported(FileTypes::Type type)
Returns if the file type is supported in this build of the library.
void applyPostLoadOptions_(MSExperiment &exp) const
Applies the current PeakFileOptions filters to an already-loaded experiment.
void storeQC(const std::string &input_file, const std::string &filename, const MSExperiment &exp, const FeatureMap &feature_map, std::vector< ProteinIdentification > &prot_ids, PeptideIdentificationList &pep_ids, const ConsensusMap &consensus_map, const std::string &contact_name="", const std::string &contact_address="", const std::string &description="", const std::string &label="label", const bool remove_duplicate_features=false, const std::vector< FileTypes::Type > allowed_types={})
Store QC info.
void setOptions(const PeakFileOptions &)
set options for loading/storing
void storeSpectrum(const std::string &filename, MSSpectrum &spec, const std::vector< FileTypes::Type > allowed_types={})
Stores a single MSSpectrum to a file.
void storeIdentifications(const std::string &filename, const std::vector< ProteinIdentification > &additional_proteins, const PeptideIdentificationList &additional_peptides, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Stores proteins and peptides into an Identification File.
const FeatureFileOptions & getFeatOptions() const
Non-mutable access to the feature file options for loading/storing.
void loadIdentifications(const std::string &filename, std::vector< ProteinIdentification > &additional_proteins, PeptideIdentificationList &additional_peptides, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Loads an identification file into a proteinIdentifications and peptideIdentifications.
static FileTypes::Type getTypeByContent(const std::string &filename)
Determines the file type of a file by parsing the first few lines.
static FileTypes::Type getTypeByFileName(const std::string &filename)
Try to get the file type from the filename.
const PeakFileOptions & getOptions() const
Non-mutable access to the options for loading/storing.
void loadConsensusFeatures(const std::string &filename, ConsensusMap &map, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Loads a file into a ConsensusMap.
void storeExperiment(const std::string &filename, const PeakMap &exp, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Stores an MSExperiment to a file.
void storeConsensusFeatures(const std::string &filename, const ConsensusMap &map, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Store a ConsensusFeatureMap.
void loadTransformations(const std::string &filename, TransformationDescription &map, bool fit_model=true, const std::vector< FileTypes::Type > allowed_types={})
Loads a file into Transformations.
void storeTransitions(const std::string &filename, const TargetedExperiment &library, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Store transitions of a spectral library.
PeakFileOptions options_
Definition FileHandler.h:423
static bool hasValidExtension(const std::string &filename, const FileTypes::Type type)
Check if filename has the extension type.
static FileTypes::Type getType(const std::string &filename)
Tries to determine the file type (by name or content)
void storeFeatures(const std::string &filename, const FeatureMap &map, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Store a FeatureMap.
FeatureFileOptions & getFeatOptions()
Mutable access to the feature file options for loading/storing.
PeakFileOptions & getOptions()
Mutable access to the options for loading/storing.
static std::string swapExtension(const std::string &filename, const FileTypes::Type new_type)
Tries to find and remove a known file extension, and append the new one.
void loadSpectrum(const std::string &filename, MSSpectrum &spec, const std::vector< FileTypes::Type > allowed_types={})
Loads a single MSSpectrum from a file.
static std::string stripExtension(const std::string &filename)
If filename contains an extension, it will be removed (including the '.'). Special extensions,...
void setFeatOptions(const FeatureFileOptions &)
set feature file options for loading/storing
void loadTransitions(const std::string &filename, TargetedExperiment &library, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Load transitions of a spectral library.
static std::string computeFileHash(const std::string &filename)
Computes a SHA-1 hash value for the content of the given file.
FeatureFileOptions f_options_
Definition FileHandler.h:424
void loadExperiment(const std::string &filename, PeakMap &exp, const std::vector< FileTypes::Type > allowed_types=std::vector< FileTypes::Type >(), ProgressLogger::LogType log=ProgressLogger::NONE, const bool rewrite_source_file=false, const bool compute_hash=false)
Loads a file into an MSExperiment.
void loadFeatures(const std::string &filename, FeatureMap &map, const std::vector< FileTypes::Type > allowed_types={}, ProgressLogger::LogType log=ProgressLogger::NONE)
Loads a file into a FeatureMap.
static FileTypes::Type getConsistentOutputfileType(const std::string &output_filename, const std::string &requested_type)
Useful function for TOPP tools which have an 'out_type' parameter and want to know what output format...
void storeTransformations(const std::string &filename, const TransformationDescription &map, const std::vector< FileTypes::Type > allowed_types={})
Store Transformations.
In-Memory representation of a mass spectrometry run.
Definition MSExperiment.h:49
The representation of a 1D spectrum.
Definition MSSpectrum.h:44
Options for loading files containing peak data.
Definition PeakFileOptions.h:22
Container for peptide identifications from multiple spectra.
Definition PeptideIdentificationList.h:66
LogType
Possible log types.
Definition ProgressLogger.h:43
A description of a targeted experiment containing precursor and production ions.
Definition TargetedExperiment.h:40
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
Type
Actual file types enum.
Definition FileTypes.h:31