| 159 | |
| 160 | |
| 161 | Param getSubsectionDefaults_(const String& section) const override |
| 162 | { |
| 163 | Param algo_params; |
| 164 | if (section == "PEPMatrix") |
| 165 | { |
| 166 | algo_params = ConsensusIDAlgorithmPEPMatrix().getDefaults(); |
| 167 | } |
| 168 | else // section == "PEPIons" |
| 169 | { |
| 170 | algo_params = ConsensusIDAlgorithmPEPIons().getDefaults(); |
| 171 | } |
| 172 | // remove parameters defined in the base class (to avoid duplicates): |
| 173 | algo_params.remove("filter:"); |
| 174 | return algo_params; |
| 175 | } |
| 176 | |
| 177 | |
| 178 | void setProteinIdentifications_(vector<ProteinIdentification>& prot_ids) |
nothing calls this directly
no test coverage detected