-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '8faebba3f96210242892943d37e4fe9e8a5eed8d'
- Loading branch information
Showing
12 changed files
with
175 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,9 +39,9 @@ std::vector<Command> baseCommands = { | |
"Slower, sensitive clustering", | ||
"mmseqs easy-cluster examples/DB.fasta result tmp\n" | ||
"# Cluster output\n" | ||
"# - result_rep_seq.fasta: Representatives\n" | ||
"# - result_all_seq.fasta: FASTA-like per cluster\n" | ||
"# - result_cluster.tsv: Adjacency list\n\n" | ||
"# - result_rep_seq.fasta: Representatives\n" | ||
"# - result_all_seqs.fasta: FASTA-like per cluster\n" | ||
"# - result_cluster.tsv: Adjacency list\n\n" | ||
"# Important parameter: --min-seq-id, --cov-mode and -c \n" | ||
"# --cov-mode \n" | ||
"# 0 1 2\n" | ||
|
@@ -62,9 +62,9 @@ std::vector<Command> baseCommands = { | |
"Fast linear time cluster, less sensitive clustering", | ||
"mmseqs easy-linclust examples/DB.fasta result tmp\n\n" | ||
"# Linclust output\n" | ||
"# - result_rep_seq.fasta: Representatives\n" | ||
"# - result_all_seq.fasta: FASTA-like per cluster\n" | ||
"# - result_cluster.tsv: Adjecency list\n\n" | ||
"# - result_rep_seq.fasta: Representatives\n" | ||
"# - result_all_seqs.fasta: FASTA-like per cluster\n" | ||
"# - result_cluster.tsv: Adjecency list\n\n" | ||
"# Important parameter: --min-seq-id, --cov-mode and -c \n" | ||
"# --cov-mode \n" | ||
"# 0 1 2\n" | ||
|
@@ -130,14 +130,21 @@ std::vector<Command> baseCommands = { | |
"<i:fastaFile1[.gz|.bz2]> ... <i:fastaFileN[.gz|.bz2]>|<i:stdin> <o:sequenceDB>", | ||
CITATION_MMSEQS2, {{"fast[a|q]File[.gz|bz2]|stdin", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA | DbType::VARIADIC, &DbValidator::flatfileStdinAndGeneric }, | ||
{"sequenceDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::flatfile }}}, | ||
{"makepaddedseqdb", makepaddedseqdb, &par.onlyverbosity, COMMAND_HIDDEN, | ||
"Generate a padded sequence DB", | ||
"Generate a padded sequence DB", | ||
"Martin Steinegger <[email protected]>", | ||
"<i:sequenceDB> <o:sequenceDB>", | ||
CITATION_MMSEQS2, {{"sequenceDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA|DbType::NEED_HEADER, &DbValidator::sequenceDb }, | ||
{"sequenceIndexDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }}}, | ||
{"appenddbtoindex", appenddbtoindex, &par.appenddbtoindex, COMMAND_HIDDEN, | ||
NULL, | ||
NULL, | ||
"Milot Mirdita <[email protected]>", | ||
"<i:DB1> ... <i:DBN> <o:DB>", | ||
CITATION_MMSEQS2, {{"DB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA | DbType::VARIADIC, &DbValidator::allDb }, | ||
{"DB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::allDb }}}, | ||
{"indexdb", indexdb, &par.indexdb, COMMAND_HIDDEN, | ||
{"indexdb", indexdb, &par.indexdb, COMMAND_HIDDEN, | ||
NULL, | ||
NULL, | ||
"Martin Steinegger <[email protected]>", | ||
|
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.