| 484 | } |
| 485 | |
| 486 | bool TargetedExperiment::hasCompound(const String & ref) const |
| 487 | { |
| 488 | if (compound_reference_map_dirty_) |
| 489 | { |
| 490 | createCompoundReferenceMap_(); |
| 491 | } |
| 492 | return compound_reference_map_.find(ref) != compound_reference_map_.end(); |
| 493 | } |
| 494 | |
| 495 | void TargetedExperiment::addPeptide(const Peptide & rhs) |
| 496 | { |
no test coverage detected