-
Notifications
You must be signed in to change notification settings - Fork 206
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
Add SKIP_ORF option in translated_search #885
Changes from 9 commits
0284092
4c6f74f
3263e9d
a035b87
9dce49a
b1e5139
2c1f500
88b3670
94eae3a
964bfaa
a804518
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,6 +172,7 @@ Parameters::Parameters(): | |
PARAM_ORF_FILTER_S(PARAM_ORF_FILTER_S_ID, "--orf-filter-s", "ORF filter sensitivity", "Sensitivity used for query ORF prefiltering", typeid(float), (void *) &orfFilterSens, "^[0-9]*(\\.[0-9]+)?$"), | ||
PARAM_ORF_FILTER_E(PARAM_ORF_FILTER_E_ID, "--orf-filter-e", "ORF filter e-value", "E-value threshold used for query ORF prefiltering", typeid(double), (void *) &orfFilterEval, "^([-+]?[0-9]*\\.?[0-9]+([eE][-+]?[0-9]+)?)|[0-9]*(\\.[0-9]+)?$"), | ||
PARAM_LCA_SEARCH(PARAM_LCA_SEARCH_ID, "--lca-search", "LCA search mode", "Efficient search for LCA candidates", typeid(bool), (void *) &lcaSearch, "", MMseqsParameter::COMMAND_PROFILE | MMseqsParameter::COMMAND_EXPERT), | ||
PARAM_ORF_SKIP(PARAM_ORF_SKIP_ID, "--orf-skip", "ORF skip mode", "???", typeid(bool), (void *) &orfSkip, ""), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Still TODO There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @martin-steinegger any better ideas for a parameter name? |
||
// easysearch | ||
PARAM_GREEDY_BEST_HITS(PARAM_GREEDY_BEST_HITS_ID, "--greedy-best-hits", "Greedy best hits", "Choose the best hits greedily to cover the query", typeid(bool), (void *) &greedyBestHits, ""), | ||
// extractorfs | ||
|
@@ -727,7 +728,9 @@ Parameters::Parameters(): | |
|
||
// extract frames | ||
extractframes.push_back(&PARAM_ORF_FORWARD_FRAMES); | ||
extractframes.push_back(&PARAM_ORF_REVERSE_FRAMES); | ||
extractframes.push_back(&PARAM_ORF_REVERSE_FRAMES); | ||
extractframes.push_back(&PARAM_TRANSLATION_TABLE); | ||
extractframes.push_back(&PARAM_TRANSLATE); | ||
extractframes.push_back(&PARAM_CREATE_LOOKUP); | ||
extractframes.push_back(&PARAM_THREADS); | ||
extractframes.push_back(&PARAM_COMPRESSED); | ||
|
@@ -1251,7 +1254,7 @@ Parameters::Parameters(): | |
searchworkflow = combineList(searchworkflow, rescorediagonal); | ||
searchworkflow = combineList(searchworkflow, result2profile); | ||
searchworkflow = combineList(searchworkflow, extractorfs); | ||
searchworkflow = combineList(searchworkflow, translatenucs); | ||
searchworkflow = combineList(searchworkflow, extractframes); | ||
searchworkflow = combineList(searchworkflow, splitsequence); | ||
searchworkflow = combineList(searchworkflow, offsetalignment); | ||
// needed for slice search, however all its parameters are already present in searchworkflow | ||
|
@@ -1268,6 +1271,7 @@ Parameters::Parameters(): | |
searchworkflow.push_back(&PARAM_RUNNER); | ||
searchworkflow.push_back(&PARAM_REUSELATEST); | ||
searchworkflow.push_back(&PARAM_REMOVE_TMP_FILES); | ||
searchworkflow.push_back(&PARAM_ORF_SKIP); | ||
|
||
linsearchworkflow = combineList(align, kmersearch); | ||
linsearchworkflow = combineList(linsearchworkflow, swapresult); | ||
|
@@ -2277,6 +2281,7 @@ void Parameters::setDefaults() { | |
orfFilterSens = 2.0; | ||
orfFilterEval = 100; | ||
lcaSearch = false; | ||
orfSkip = false; | ||
|
||
greedyBestHits = false; | ||
|
||
|
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.
same as above