-
Notifications
You must be signed in to change notification settings - Fork 1
PercolatorAdapter has been changed by Timo reverted to proper parsing… #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: fix/TOPPerc
Are you sure you want to change the base?
PercolatorAdapter has been changed by Timo reverted to proper parsing… #9
Conversation
…or feature set due to a lot of missing information (lost in mascotadapter)
… better (prep pin missing tho)
…protein-level FDRs
…asPrefix in getScanNumber_ of PercolatorAdapter
… of native idstring. Prefix was not right for parsing + a couple of couts for debugging
|
Please remove the mac files |
src/utils/COMETAdapter.cpp
Outdated
| // -------------------------------------------------------------------------- | ||
| // $Maintainer: Chris Bielow $ | ||
| // $Authors: Andreas Bertsch, Chris Bielow $ | ||
| // $Authors: Leon Bichmann, Andreas Bertsch, Chris Bielow $ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is incorrect I presume
| // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| // | ||
| // -------------------------------------------------------------------------- | ||
| // $Maintainer: Chris Bielow $ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cbielow was this arranged with you?
| // if scan number is not available, use the scan index | ||
| Size idx = 0; | ||
| if ((idx = it->hasPrefix("scan=")) != string::npos) | ||
| if ((idx = it->find("scan=")) != string::npos) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please pull the latest commits from origin, this was changed.
| break; | ||
| } | ||
| else if ((idx = it->hasPrefix("index=")) != string::npos) | ||
| else if ((idx = it->find("index=")) != string::npos) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please pull the latest commits from origin, this was changed.
| //id <tab> label <tab> scannr <tab> calcmass <tab> expmass <tab> feature1 <tab> ... <tab> featureN <tab> peptide <tab> proteinId1 <tab> .. <tab> proteinIdM | ||
| void preparePin_(vector<PeptideIdentification>& peptide_ids, StringList& feature_set, std::string& enz, TextFile& txt, int min_charge, int max_charge) | ||
| { | ||
| std::cout << "number of features = " << feature_set.size() << "\n"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
either LOG_INFO or LOG_DEBUG
| String pout_decoy_file_proteins(temp_directory_body + txt_designator + "_decoy_pout_proteins.tab"); | ||
|
|
||
| LOG_DEBUG << "Writing percolator input file." << endl; | ||
| LOG_DEBUG << "Writing percolator input file." << pin_file << endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is quite redundant as the PIN files are not removed if debug level > 2
|
Would you please rephrase the PR description as it is unclear to me what you mean. I did not find any changes from @timosachsenberg - Also, I updated the idXML consumption for PercolatorAdapter, which some of them get undone by this PR. Please correct. |
f39a28e to
8bce6e7
Compare
Fix/consensus map id map index order
… of native idstring. Prefix was not right for parsing + a couple of couts for debugging