get name plus name_extra plus optionally augmented with attributes, e.g. '*' if modified
| 47 | |
| 48 | /// get name plus name_extra plus optionally augmented with attributes, e.g. '*' if modified |
| 49 | String LayerDataBase::getDecoratedName() const |
| 50 | { |
| 51 | String n = name_ + name_suffix_; |
| 52 | if (modified) |
| 53 | { |
| 54 | n += '*'; |
| 55 | } |
| 56 | return n; |
| 57 | } |
| 58 | |
| 59 | bool LayerDataBase::annotate(const vector<PeptideIdentification>& identifications, |
| 60 | const vector<ProteinIdentification>& protein_identifications) |
no outgoing calls
no test coverage detected