Detailed Constructor
| 20 | |
| 21 | /// Detailed Constructor |
| 22 | MSQuantifications::MSQuantifications(const FeatureMap& fm, ExperimentalSettings& es, std::vector<DataProcessing>& dps, std::vector<std::vector<std::pair<String, double> > > label) : |
| 23 | ExperimentalSettings() |
| 24 | { |
| 25 | MSQuantifications::QUANT_TYPES quant_type = MSQuantifications::LABELFREE; |
| 26 | this->setAnalysisSummaryQuantType(quant_type); |
| 27 | |
| 28 | //~ AssayList,InputFiles,SoftwareList |
| 29 | //~ aus exp. |
| 30 | this->registerExperiment(es,dps,std::move(label)); |
| 31 | |
| 32 | this->setDataProcessingList(fm.getDataProcessing()); //TODO add dp from experiment (i.e. mzml) ? |
| 33 | feature_maps_ = std::vector<FeatureMap > (1,fm); |
| 34 | } |
| 35 | |
| 36 | MSQuantifications::~MSQuantifications() = default; |
| 37 |