-
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 branch 'master' of https://github.com/steineggerlab/foldseek
- Loading branch information
Showing
5 changed files
with
26 additions
and
47 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 |
---|---|---|
|
@@ -268,13 +268,13 @@ std::vector<Command> foldseekCommands = { | |
"# Search a single/multiple PDB file against a set of PDB files and get complex level alignments\n" | ||
"foldseek complexsearch queryDB targetDB result tmp\n" | ||
"# Format output differently\n" | ||
"foldseek easy-complexsearch queryDB targetDB result tmp --format-output query,target,qstart,tstart,cigar\n" | ||
"foldseek complexsearch queryDB targetDB result tmp --format-output query,target,qstart,tstart,cigar\n" | ||
"# Align with TMalign (global)\n" | ||
"foldseek complexsearch queryDB targetDB result tmp --alignment-type 1\n" | ||
"# Skip prefilter and perform an exhaustive alignment (slower but more sensitive)\n" | ||
"foldseek complexsearch queryDB targetDB result tmp --exhaustive-search 1\n\n", | ||
"Woosub Kim <[email protected]>", | ||
"<i:queryDB> <i:targetDB> <o:outputFileName> <tmpDir>", | ||
"<i:queryDB> <i:targetDB> <o:alignmentDB> <tmpDir>", | ||
CITATION_FOLDSEEK, { | ||
{"queryDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA | DbType::NEED_HEADER, &DbValidator::sequenceDb}, | ||
{"targetDB", DbType::ACCESS_MODE_INPUT, DbType::NEED_DATA | DbType::NEED_HEADER, &DbValidator::sequenceDb}, | ||
|
@@ -302,7 +302,7 @@ std::vector<Command> foldseekCommands = { | |
} | ||
}, | ||
{"createcomplexreport", createcomplexreport, &localPar.createcomplexreport, COMMAND_FORMAT_CONVERSION, | ||
"Convert complex DB to tsv format\"", | ||
"Convert complexDB to tsv format", | ||
"# Create output in tsv format (9 columns): qComplexName.c_str(), tComplexName.c_str(), qChainString.c_str(), tChainString.c_str(), qTMScore, tTMScore, u, t, assId\n" | ||
"# (1,2) identifiers for query and target complex,\n" | ||
"# (3,4) chains of query complex and target complex,\n" | ||
|
@@ -319,8 +319,8 @@ std::vector<Command> foldseekCommands = { | |
{"complexFile", DbType::ACCESS_MODE_OUTPUT, DbType::NEED_DATA, &DbValidator::flatfile} | ||
} | ||
}, | ||
{"expandcomplex", expandcomplex, &localPar.expandcomplex, COMMAND_ALIGNMENT, | ||
"expand complex", | ||
{"expandcomplex", expandcomplex, &localPar.expandcomplex, COMMAND_PREFILTER, | ||
"Re-prefilter to ensure complete alignment between complexes", | ||
NULL, | ||
"Woosub Kim <[email protected]>", | ||
"<i:queryDB> <i:targetDB> <i:alignmentDB> <o:prefilterDB>", | ||
|
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