| 2269 | } |
| 2270 | |
| 2271 | void TOPPBase::addDataProcessing_(ConsensusMap& map, const DataProcessing& dp) const |
| 2272 | { |
| 2273 | map.getDataProcessing().push_back(dp); |
| 2274 | |
| 2275 | //remove absolute map paths |
| 2276 | if (test_mode_) |
| 2277 | { |
| 2278 | for (Size d = 0; d < map.getColumnHeaders().size(); ++d) |
| 2279 | { |
| 2280 | map.getColumnHeaders()[d].filename = File::basename(map.getColumnHeaders()[d].filename); |
| 2281 | } |
| 2282 | } |
| 2283 | } |
| 2284 | |
| 2285 | void TOPPBase::addDataProcessing_(FeatureMap& map, const DataProcessing& dp) const |
| 2286 | { |
nothing calls this directly
no test coverage detected