-
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.
* Improve gff2db to parse multiple files, and try multi-threading * Add Util:getFieldsOfLine to skip over tabs * Correctly deal with GFF3 column 2 that can contain whitespace * Allow multiple GFF feature types in gff2db * Make identifiers stable in gff2db * Improved log output in gff2db Co-authored-by: Milot Mirdita <[email protected]>
- Loading branch information
1 parent
d822533
commit 488df86
Showing
4 changed files
with
216 additions
and
96 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 |
---|---|---|
|
@@ -1146,8 +1146,8 @@ std::vector<Command> baseCommands = { | |
"Extract regions from a sequence database based on a GFF3 file", | ||
NULL, | ||
"Milot Mirdita <[email protected]>", | ||
"<i:gff3File> <i:sequenceDB> <o:sequenceDB>", | ||
CITATION_MMSEQS2, {{"gff3File", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::flatfile }, | ||
"<i:gff3File1> ... <i:gff3FileN> <i:sequenceDB> <o:sequenceDB>", | ||
CITATION_MMSEQS2, {{"gff3File", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA | DbType::VARIADIC, &DbValidator::flatfile }, | ||
{"sequenceDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }, | ||
{"sequenceDB", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::sequenceDb }}}, | ||
{"maskbygff", maskbygff, &par.gff2db, COMMAND_SPECIAL, | ||
|
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