141 inline ExitCodes run(std::vector<FASTAFile::FASTAEntry>& proteins, std::vector<ProteinIdentification>& prot_ids, std::vector<PeptideIdentification>& pep_ids)
144 return run<TFI_Vector>(protein_container, prot_ids, pep_ids);
192 const size_t PROTEIN_CACHE_SIZE = 4e5;
198 proteins.cacheChunk(PROTEIN_CACHE_SIZE);
200 if (proteins.empty())
202 LOG_ERROR <<
"Error: An empty database was provided. Mapping makes no sense. Aborting..." << std::endl;
203 return DATABASE_EMPTY;
208 LOG_WARN <<
"Warning: An empty set of peptide identifications was provided. Output will be empty as well." << std::endl;
209 if (!keep_unreferenced_proteins_)
212 for (std::vector<ProteinIdentification>::iterator it = prot_ids.begin();
213 it != prot_ids.end(); ++it)
215 it->getHits().clear();
218 return PEPTIDE_IDS_EMPTY;
223 std::vector<bool> protein_is_decoy;
224 std::vector<std::string> protein_accessions;
226 bool invalid_protein_sequence =
false;
233 bool has_illegal_AAs(
false);
235 for (std::vector<PeptideIdentification>::const_iterator it1 = pep_ids.begin(); it1 != pep_ids.end(); ++it1)
238 const std::vector<PeptideHit>& hits = it1->getHits();
239 for (std::vector<PeptideHit>::const_iterator it2 = hits.begin(); it2 != hits.end(); ++it2)
245 String seq = it2->getSequence().toUnmodifiedString().
remove(
'*');
248 LOG_ERROR <<
"Peptide sequence '" << it2->getSequence() <<
"' contains one or more ambiguous amino acids (B|J|Z|X).\n";
249 has_illegal_AAs =
true;
255 appendValue(pep_DB, seq.c_str());
260 LOG_ERROR <<
"One or more peptides contained illegal amino acids. This is not allowed!" 261 <<
"\nPlease either remove the peptide or replace it with one of the unambiguous ones (while allowing for ambiguous AA's to match the protein)." << std::endl;;
264 LOG_INFO <<
"Mapping " << length(pep_DB) <<
" peptides to " << (proteins.size() == PROTEIN_CACHE_SIZE ?
"? (unknown number of)" :
String(proteins.size())) <<
" proteins." << std::endl;
266 if (length(pep_DB) == 0)
268 LOG_WARN <<
"Warning: Peptide identifications have no hits inside! Output will be empty as well." << std::endl;
269 return PEPTIDE_IDS_EMPTY;
275 LOG_INFO <<
"Searching with up to " << aaa_max_ <<
" ambiguous amino acid(s) and " << mm_max_ <<
" mismatch(es)!" << std::endl;
286 uint16_t count_j_proteins(0);
287 bool has_active_data =
true;
288 const std::string jumpX(aaa_max_ + mm_max_ + 1,
'X');
289 this->startProgress(0, proteins.size(),
"Aho-Corasick");
290 std::atomic<int> progress_prots(0);
302 #pragma omp barrier // all threads need to be here, since we are about to swap protein data 305 DEBUG_ONLY std::cerr <<
" activating cache ...\n";
306 has_active_data = proteins.activateCache();
307 protein_accessions.resize(proteins.getChunkOffset() + proteins.chunkSize());
310 if (!has_active_data)
break;
315 DEBUG_ONLY std::cerr <<
"Filling Protein Cache ...";
316 proteins.cacheChunk(PROTEIN_CACHE_SIZE);
317 protein_is_decoy.resize(proteins.getChunkOffset() + prot_count);
320 const String& seq = proteins.chunkAt(i).identifier;
321 protein_is_decoy[i + proteins.getChunkOffset()] = (prefix_ ? seq.
hasPrefix(decoy_string_) : seq.
hasSuffix(decoy_string_));
325 DEBUG_ONLY std::cerr <<
" starting for loop \n";
327 #pragma omp for schedule(dynamic, 100) nowait 331 if (omp_get_thread_num() == 0)
333 this->setProgress(progress_prots);
336 prot = proteins.chunkAt(i).sequence;
340 if (prot.
has(
'[') || prot.
has(
'('))
342 invalid_protein_sequence =
true;
361 Size prot_idx = i + proteins.getChunkOffset();
370 size_t offset = -1, start = 0;
371 while ((offset = prot.find(jumpX, offset + 1)) != std::string::npos)
374 addHits_(fuzzyAC, pattern, pep_DB, prot.
substr(start, offset + jumpX.size() - start), prot, prot_idx, (
int)start, func_threads);
376 while (offset + jumpX.size() < prot.size() && prot[offset + jumpX.size()] ==
'X') ++offset;
381 if (start < prot.size())
383 addHits_(fuzzyAC, pattern, pep_DB, prot.
substr(start), prot, prot_idx, (int)start, func_threads);
388 addHits_(fuzzyAC, pattern, pep_DB, prot, prot, prot_idx, 0, func_threads);
393 protein_accessions[prot_idx] = proteins.chunkAt(i).identifier;
394 acc_to_prot_thread[protein_accessions[prot_idx]] = prot_idx;
401 #pragma omp critical(PeptideIndexer_joinAC) 406 func.
merge(func_threads);
408 acc_to_prot.insert(acc_to_prot_thread.begin(), acc_to_prot_thread.end());
409 acc_to_prot_thread.clear();
415 std::cout <<
"Merge took: " << s.
toString() <<
"\n";
417 std::cout << mu.
delta(
"Aho-Corasick") <<
"\n\n";
423 <<
" ... rejected by enzyme filter: " << func.
filter_rejected << std::endl;
425 if (count_j_proteins)
427 LOG_WARN <<
"PeptideIndexer found " << count_j_proteins <<
" protein sequences in your database containing the amino acid 'J'." 428 <<
"To match 'J' in a protein, an ambiguous amino acid placeholder for I/L will be used.\n" 429 <<
"This costs runtime and eats into the 'aaa_max' limit, leaving less opportunity for B/Z/X matches.\n" 430 <<
"If you want 'J' to be treated as unambiguous, enable '-IL_equivalent'!" << std::endl;
440 for (
Size run_idx = 0; run_idx < prot_ids.size(); ++run_idx)
442 runid_to_runidx[prot_ids[run_idx].getIdentifier()] = run_idx;
446 Size stats_matched_unique(0);
447 Size stats_matched_multi(0);
448 Size stats_unmatched(0);
449 Size stats_count_m_t(0);
450 Size stats_count_m_d(0);
451 Size stats_count_m_td(0);
456 for (std::vector<PeptideIdentification>::iterator it1 = pep_ids.begin(); it1 != pep_ids.end(); ++it1)
459 Size run_idx = runid_to_runidx[it1->getIdentifier()];
461 std::vector<PeptideHit>& hits = it1->getHits();
463 for (std::vector<PeptideHit>::iterator it2 = hits.begin(); it2 != hits.end(); ++it2)
466 it2->setPeptideEvidences(std::vector<PeptideEvidence>());
471 bool matches_target(
false);
472 bool matches_decoy(
false);
474 std::set<Size> prot_indices;
476 for (std::set<PeptideProteinMatchInformation>::const_iterator it_i = func.
pep_to_prot[pep_idx].begin();
479 prot_indices.insert(it_i->protein_index);
480 const String& accession = protein_accessions[it_i->protein_index];
481 PeptideEvidence pe(accession, it_i->position, it_i->position + (
int)it2->getSequence().size() - 1, it_i->AABefore, it_i->AAAfter);
482 it2->addPeptideEvidence(pe);
484 runidx_to_protidx[run_idx].insert(it_i->protein_index);
486 if (protein_is_decoy[it_i->protein_index])
488 matches_decoy =
true;
492 matches_target =
true;
496 if (matches_decoy && matches_target)
498 it2->setMetaValue(
"target_decoy",
"target+decoy");
501 else if (matches_target)
503 it2->setMetaValue(
"target_decoy",
"target");
506 else if (matches_decoy)
508 it2->setMetaValue(
"target_decoy",
"decoy");
513 if (prot_indices.size() == 1)
515 it2->setMetaValue(
"protein_references",
"unique");
516 ++stats_matched_unique;
518 else if (prot_indices.size() > 1)
520 it2->setMetaValue(
"protein_references",
"non-unique");
521 ++stats_matched_multi;
525 it2->setMetaValue(
"protein_references",
"unmatched");
527 if (stats_unmatched < 15)
LOG_INFO <<
"Unmatched peptide: " << it2->getSequence() <<
"\n";
528 else if (stats_unmatched == 15)
LOG_INFO <<
"Unmatched peptide: ...\n";
536 Size total_peptides = stats_count_m_t + stats_count_m_d + stats_count_m_td + stats_unmatched;
537 LOG_INFO <<
"-----------------------------------\n";
540 LOG_INFO <<
" unmatched : " << stats_unmatched <<
" (" << stats_unmatched * 100 / total_peptides <<
" %)\n";
542 LOG_INFO <<
" match to target DB only: " << stats_count_m_t <<
" (" << stats_count_m_t * 100 / total_peptides <<
" %)\n";
543 LOG_INFO <<
" match to decoy DB only : " << stats_count_m_d <<
" (" << stats_count_m_d * 100 / total_peptides <<
" %)\n";
544 LOG_INFO <<
" match to both : " << stats_count_m_td <<
" (" << stats_count_m_td * 100 / total_peptides <<
" %)\n";
546 LOG_INFO <<
" mapping to proteins:\n";
547 LOG_INFO <<
" no match (to 0 protein) : " << stats_unmatched <<
"\n";
548 LOG_INFO <<
" unique match (to 1 protein) : " << stats_matched_unique <<
"\n";
549 LOG_INFO <<
" non-unique match (to >1 protein): " << stats_matched_multi << std::endl;
552 Size stats_matched_proteins(0), stats_matched_new_proteins(0), stats_orphaned_proteins(0), stats_proteins_target(0), stats_proteins_decoy(0);
555 for (
Size run_idx = 0; run_idx < prot_ids.size(); ++run_idx)
557 std::set<Size> masterset = runidx_to_protidx[run_idx];
559 std::vector<ProteinHit>& phits = prot_ids[run_idx].getHits();
562 std::vector<ProteinHit> orphaned_hits;
563 for (std::vector<ProteinHit>::iterator p_hit = phits.begin(); p_hit != phits.end(); ++p_hit)
565 const String& acc = p_hit->getAccession();
566 if (!acc_to_prot.
has(acc))
568 ++stats_orphaned_proteins;
569 if (keep_unreferenced_proteins_)
571 p_hit->setMetaValue(
"target_decoy",
"");
572 orphaned_hits.push_back(*p_hit);
577 phits = orphaned_hits;
582 phits.reserve(phits.size() + masterset.size());
583 for (std::set<Size>::const_iterator it = masterset.begin(); it != masterset.end(); ++it)
588 if (write_protein_sequence_ || write_protein_description_)
590 proteins.readAt(fe, *it);
591 if (write_protein_sequence_)
595 if (write_protein_description_)
600 if (protein_is_decoy[*it])
603 ++stats_proteins_decoy;
608 ++stats_proteins_target;
610 phits.push_back(hit);
611 ++stats_matched_new_proteins;
613 stats_matched_proteins += phits.size();
617 LOG_INFO <<
"-----------------------------------\n";
620 LOG_INFO <<
" total proteins searched: " << proteins.size() <<
"\n";
621 LOG_INFO <<
" matched proteins : " << stats_matched_proteins <<
" (" << stats_matched_new_proteins <<
" new)\n";
622 if (stats_matched_proteins)
624 LOG_INFO <<
" matched target proteins: " << stats_proteins_target <<
" (" << stats_proteins_target * 100 / stats_matched_proteins <<
" %)\n";
625 LOG_INFO <<
" matched decoy proteins : " << stats_proteins_decoy <<
" (" << stats_proteins_decoy * 100 / stats_matched_proteins <<
" %)\n";
627 LOG_INFO <<
" orphaned proteins : " << stats_orphaned_proteins << (keep_unreferenced_proteins_ ?
" (all kept)" :
" (all removed)\n");
628 LOG_INFO <<
"-----------------------------------" << std::endl;
632 bool has_error =
false;
634 if (invalid_protein_sequence)
636 LOG_ERROR <<
"Error: One or more protein sequences contained the characters '[' or '(', which are illegal in protein sequences." 637 <<
"\nPeptide hits might be masked by these characters (which usually indicate presence of modifications).\n";
641 if ((stats_count_m_d + stats_count_m_td) == 0)
643 String msg(
"No peptides were matched to the decoy portion of the database! Did you provide the correct concatenated database? Are your 'decoy_string' (=" +
String(decoy_string_) +
") and 'decoy_string_position' (=" +
String(param_.getValue(
"decoy_string_position")) +
") settings correct?");
644 if (missing_decoy_action_ ==
"error")
646 LOG_ERROR <<
"Error: " << msg <<
"\nSet 'missing_decoy_action' to 'warn' if you are sure this is ok!\nAborting ..." << std::endl;
649 else if (missing_decoy_action_ ==
"warn")
651 LOG_WARN <<
"Warn: " << msg <<
"\nSet 'missing_decoy_action' to 'error' if you want to elevate this to an error!" << std::endl;
658 if ((!allow_unmatched_) && (stats_unmatched > 0))
660 LOG_ERROR <<
"PeptideIndexer found unmatched peptides, which could not be associated to a protein.\n" 661 <<
"Potential solutions:\n" 662 <<
" - check your FASTA database for completeness\n" 663 <<
" - set 'enzyme:specificity' to match the identification parameters of the search engine\n" 664 <<
" - some engines (e.g. X! Tandem) employ loose cutting rules generating non-tryptic peptides;\n" 665 <<
" if you trust them, disable enzyme specificity\n" 666 <<
" - increase 'aaa_max' to allow more ambiguous amino acids\n" 667 <<
" - as a last resort: use the 'allow_unmatched' option to accept unmatched peptides\n" 668 <<
" (note that unmatched peptides cannot be used for FDR calculation or quantification)\n";
674 LOG_ERROR <<
"Result files will be written, but PeptideIndexer will exit with an error code." << std::endl;
675 return UNEXPECTED_RESULT;
705 else if (AABefore != other.
AABefore)
709 else if (AAAfter != other.
AAAfter)
711 return AAAfter < other.
AAAfter;
728 typedef std::map<OpenMS::Size, std::set<PeptideProteinMatchInformation> >
MapType;
744 pep_to_prot(), filter_passed(0), filter_rejected(0), enzyme_(enzyme)
750 if (pep_to_prot.empty())
756 for (FoundProteinFunctor::MapType::const_iterator it = other.
pep_to_prot.begin(); it != other.
pep_to_prot.end(); ++it)
758 this->pep_to_prot[it->first].insert(other.
pep_to_prot[it->first].begin(), other.
pep_to_prot[it->first].end());
782 pep_to_prot[idx_pep].insert(match);
800 const seqan::Peptide& tmp_pep = pep_DB[fuzzyAC.
getHitDBIndex()];
806 void updateMembers_()
override;
FoundProteinFunctor(const ProteaseDigestion &enzyme)
Definition: PeptideIndexing.h:743
bool has(Byte byte) const
true if String contains the byte, false otherwise
A more convenient string class.
Definition: String.h:57
void after()
record data for the second timepoint
ExitCodes run(FASTAContainer< T > &proteins, std::vector< ProteinIdentification > &prot_ids, std::vector< PeptideIdentification > &pep_ids)
Re-index peptide identifications honoring enzyme cutting rules, ambiguous amino acids and target/deco...
Definition: PeptideIndexing.h:183
#define LOG_INFO
Macro if a information, e.g. a status should be reported.
Definition: LogStream.h:454
void setSequence(const String &sequence)
sets the protein sequence
Size< TNeedle >::Type position(const PatternAuxData< TNeedle > &dh)
Definition: AhoCorasickAmbiguous.h:561
StopWatch Class.
Definition: StopWatch.h:59
void setProtein(const String &protein_sequence)
Reset to new protein sequence. All previous data is forgotten.
Definition: AhoCorasickAmbiguous.h:1024
A convenience class to report either absolute or delta (between two timepoints) RAM usage...
Definition: SysInfo.h:83
::seqan::Pattern< PeptideDB, ::seqan::FuzzyAC > FuzzyACPattern
Definition: AhoCorasickAmbiguous.h:974
Definition: PeptideIndexing.h:725
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:134
Refreshes the protein references for all peptide hits in a vector of PeptideIdentifications and adds ...
Definition: PeptideIndexing.h:118
bool keep_unreferenced_proteins_
Definition: PeptideIndexing.h:816
String decoy_string_
Definition: PeptideIndexing.h:808
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
#define DEBUG_ONLY
Definition: AhoCorasickAmbiguous.h:46
Definition: PeptideIndexing.h:127
String missing_decoy_action_
Definition: PeptideIndexing.h:810
void setSpecificity(Specificity spec)
Sets the specificity for the digestion (default is SPEC_FULL).
String toString() const
get a compact representation of the current time status.
String & remove(char what)
Remove all occurrences of the character what.
ExitCodes
Exit codes.
Definition: PeptideIndexing.h:124
bool prefix_
Definition: PeptideIndexing.h:809
String enzyme_name_
Definition: PeptideIndexing.h:811
#define LOG_ERROR
Macro to be used if non-fatal error are reported (processing continues)
Definition: LogStream.h:446
Size getHitDBIndex()
Get index of hit into peptide database of the pattern.
Definition: AhoCorasickAmbiguous.h:1047
String substr(size_t pos=0, size_t n=npos) const
Wrapper for the STL substr() method. Returns a String object with its contents initialized to a subst...
#define LOG_WARN
Macro if a warning, a piece of information which should be read by the user, should be logged...
Definition: LogStream.h:450
std::map< OpenMS::Size, std::set< PeptideProteinMatchInformation > > MapType
Definition: PeptideIndexing.h:728
bool findNext(const FuzzyACPattern &pattern)
Enumerate hits.
Definition: AhoCorasickAmbiguous.h:1037
Int aaa_max_
Definition: PeptideIndexing.h:820
Int getHitProteinPosition()
Offset into protein sequence where hit was found.
Definition: AhoCorasickAmbiguous.h:1057
template parameter for vector-based FASTA access
Definition: FASTAContainer.h:76
Extended Aho-Corasick algorithm capable of matching ambiguous amino acids in the pattern (i...
Definition: AhoCorasickAmbiguous.h:970
void merge(FoundProteinFunctor &other)
Definition: PeptideIndexing.h:748
static const char N_TERMINAL_AA
Definition: PeptideEvidence.h:60
bool write_protein_sequence_
Definition: PeptideIndexing.h:814
Class for the enzymatic digestion of proteins.
Definition: ProteaseDigestion.h:60
Definition: PeptideIndexing.h:128
bool isAmbiguous(AAcid c)
Definition: AhoCorasickAmbiguous.h:578
Definition: PeptideIndexing.h:126
MapType pep_to_prot
peptide index –> protein indices
Definition: PeptideIndexing.h:731
Definition: PeptideIndexing.h:130
void setDescription(const String &description)
sets the description of the protein
bool IL_equivalent_
Definition: PeptideIndexing.h:818
Representation of a peptide evidence.
Definition: PeptideEvidence.h:50
bool has(const Key &key) const
Test whether the map contains the given key.
Definition: Map.h:108
static void initPattern(const PeptideDB &pep_db, const int aaa_max, const int mm_max, FuzzyACPattern &pattern)
Construct a trie from a set of peptide sequences (which are to be found in a protein).
Definition: AhoCorasickAmbiguous.h:991
void setEnzyme(const String &name)
Sets the enzyme for the digestion (by name)
void setAccession(const String &accession)
sets the accession of the protein
Representation of a protein hit.
Definition: ProteinHit.h:53
Definition: PeptideIndexing.h:129
String enzyme_specificity_
Definition: PeptideIndexing.h:812
static Specificity getSpecificityByName(const String &name)
String delta(const String &event="delta")
bool hasPrefix(const String &string) const
true if String begins with string, false otherwise
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
String & substitute(char from, char to)
Replaces all occurrences of the character from by the character to.
OpenMS::Size filter_rejected
number of rejected hits (not passing addHit())
Definition: PeptideIndexing.h:737
bool write_protein_description_
Definition: PeptideIndexing.h:815
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:54
Int mm_max_
Definition: PeptideIndexing.h:821
String sequence
Definition: FASTAFile.h:80
FASTA entry type (identifier, description and sequence)
Definition: FASTAFile.h:76
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:91
bool allow_unmatched_
Definition: PeptideIndexing.h:817
static const char C_TERMINAL_AA
Definition: PeptideEvidence.h:61
String< AAcid, Alloc< void > > AAString
Definition: AhoCorasickAmbiguous.h:206
int Int
Signed integer type.
Definition: Types.h:102
bool isValidProduct(const String &protein, int pep_pos, int pep_length, bool ignore_missed_cleavages=true, bool allow_nterm_protein_cleavage=false, bool allow_random_asp_pro_cleavage=false) const
Variant of EnzymaticDigestion::isValidProduct() with support for n-term protein cleavage and random D...
Map class based on the STL map (containing several convenience functions)
Definition: Map.h:50
FASTAContainer<TFI_Vector> simply takes an existing vector of FASTAEntries and provides the same inte...
Definition: FASTAContainer.h:226
::seqan::StringSet<::seqan::AAString > PeptideDB
Definition: AhoCorasickAmbiguous.h:973
String description
Definition: FASTAFile.h:79
bool hasSuffix(const String &string) const
true if String ends with string, false otherwise
OpenMS::Size filter_passed
number of accepted hits (passing addHit() constraints)
Definition: PeptideIndexing.h:734
ExitCodes run(std::vector< FASTAFile::FASTAEntry > &proteins, std::vector< ProteinIdentification > &prot_ids, std::vector< PeptideIdentification > &pep_ids)
forward for old interface and pyOpenMS; use run<T>() for more control
Definition: PeptideIndexing.h:141
void addHit(const OpenMS::Size idx_pep, const OpenMS::Size idx_prot, const OpenMS::Size len_pep, const OpenMS::String &seq_prot, OpenMS::Int position)
Definition: PeptideIndexing.h:769
double getClockTime() const
ProteaseDigestion enzyme_
Definition: PeptideIndexing.h:740
void addHits_(AhoCorasickAmbiguous &fuzzyAC, const AhoCorasickAmbiguous::FuzzyACPattern &pattern, const AhoCorasickAmbiguous::PeptideDB &pep_DB, const String &prot, const String &full_prot, SignedSize idx_prot, Int offset, FoundProteinFunctor &func_threads) const
Definition: PeptideIndexing.h:795