-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '56c5806585c479863b730d3d4ddff4a429b8cbba'
- Loading branch information
Showing
35 changed files
with
694 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -583,6 +583,14 @@ std::vector<Command> baseCommands = { | |
CITATION_MMSEQS2, {{"queryDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }, | ||
{"targetDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }, | ||
{"prefilterDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::prefilterDb }}}, | ||
{"gappedprefilter", gappedprefilter, &par.gappedprefilter, COMMAND_PREFILTER, | ||
"Optimal Smith-Waterman-based prefiltering (slow)", | ||
NULL, | ||
"Martin Steinegger <[email protected]>", | ||
"<i:queryDB> <i:targetDB> <o:prefilterDB>", | ||
CITATION_MMSEQS2, {{"queryDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }, | ||
{"targetDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }, | ||
{"prefilterDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::prefilterDb }}}, | ||
{"kmermatcher", kmermatcher, &par.kmermatcher, COMMAND_PREFILTER, | ||
"Find bottom-m-hashed k-mer matches within sequence DB", | ||
NULL, | ||
|
@@ -793,8 +801,13 @@ std::vector<Command> baseCommands = { | |
CITATION_MMSEQS2, {{"resultDBLeft", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::resultDb }, | ||
{"resultDBRight", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::resultDb }, | ||
{"resultDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::resultDb }}}, | ||
|
||
|
||
{"setextendeddbtype", setextendeddbtype, &par.extendeddbtype, COMMAND_DB, | ||
"Write an extended DB ", | ||
"# Print entries with keys 1, 2 and 3 from a sequence DB to stdout\n" | ||
"mmseqs setextendedbtype db --extended-dbtype 2\n", | ||
"Martin Steinegger <[email protected]>", | ||
"<i:DB>", | ||
CITATION_MMSEQS2, {{"DB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::allDb }}}, | ||
|
||
{"view", view, &par.view, COMMAND_DB, | ||
"Print DB entries given in --id-list to stdout", | ||
|
@@ -1245,9 +1258,14 @@ std::vector<Command> baseCommands = { | |
"Martin Steinegger <[email protected]>", | ||
"<i:sequenceDB> ", | ||
CITATION_MMSEQS2, {{"sequenceDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }}}, | ||
|
||
|
||
|
||
{"createclusearchdb", createclusearchdb, &par.createclusearchdb, COMMAND_HIDDEN, | ||
"Separates a sequence DB into a representative and a non-representative DB", | ||
NULL, | ||
"Martin Steinegger <[email protected]>", | ||
"<i:sequenceDB> <i:resultDB> <o:sequenceDB>", | ||
CITATION_MMSEQS2, {{"sequenceDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }, | ||
{"resultDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::resultDb }, | ||
{"sequenceDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }}}, | ||
{"dbtype", dbtype, &par.empty, COMMAND_HIDDEN, | ||
"", | ||
NULL, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.