-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,11 +124,13 @@ std::vector<Command> baseCommands = { | |
"mmseqs createdb file1.fa file2.fa.gz file3.fa sequenceDB\n\n" | ||
"# Create a seqDB from stdin\n" | ||
"cat seq.fasta | mmseqs createdb stdin sequenceDB\n\n" | ||
"# Create a seqDB from another seqDB named inputDB\n" | ||
"mmseqs createdb inputDB sequenceDB\n\n" | ||
"# Create a seqDB by indexing existing FASTA/Q (for single line fasta entries only)\n" | ||
"mmseqs createdb seq.fasta sequenceDB --createdb-mode 1\n", | ||
"Martin Steinegger <[email protected]>", | ||
"<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 }, | ||
"<i:fastaFile1[.gz|.bz2]> ... <i:fastaFileN[.gz|.bz2]>|<i:stdin>|<i:inputDB> <o:sequenceDB>", | ||
CITATION_MMSEQS2, {{"fast[a|q]File[.gz|bz2]|stdin|inputDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA | DbType::VARIADIC, &DbValidator::flatfileStdinAndGeneric }, | ||
{"sequenceDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::flatfile }}}, | ||
{"appenddbtoindex", appenddbtoindex, &par.appenddbtoindex, COMMAND_HIDDEN, | ||
NULL, | ||
|