-
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.
Squashed 'lib/mmseqs/' changes from 24f6b52a38..f349118312
f349118312 Make sure very large database don't overflow localThreads ad5837b344 Revert "result2msa now supports reading from index" 7ee3e79453 Fix wrong database name printed for variadic input when creating a tmp directory 15fdf48e73 result2msa now supports reading from index 7aade9df74 Change deep copies to const references in result2msa ce7cf754e5 Merge branch 'master' of https://github.com/soedinglab/mmseqs2 31eb67ae0e Add A3M support to result2msa 56f7685b56 Add symlinks/copies for _taxonomy file #474 904d0c6d1d Transition old compiler tests from travis to CirrusCI 442d898306 Fix memory issues in QueryMatcher 17c8028e18 Move fixRlimitNoFile to Application c6634976c8 Fix the forbidden symbols when using unpackdb (#467) 488df8634e Refactoring of gff2db d822533f2e Build update function for DbType validators a09a704eb9 Remove bash dependency in regression to fix FreeBSD in CirrusCI 4f1996a472 Fix FreeBSD on CirrusCI samtools issue a2e2129c13 Add CirrusCI to test FreeBSD 15ace29a27 Fix posix_madvise on FreeBSD returning error if size=0 (See #460) 139e4502a9 Get rid of MathUtil::popCount in favor of __builtin_popcount bbfd6e26db Add preload mode to expand(aln/2profile) b14d0136e8 Fix a few more tests 635911ecf4 Increase sortresult buffer for matcher result d6c19db94b Fix exhaustive search parameter in examples e86afeab17 Move substitution matrix init code out of Parameters::parseParameters to fix tests 62f7aba12a Replace biorxiv citation for taxonomy paper git-subtree-dir: lib/mmseqs git-subtree-split: f349118312919c4fcc448f4595ca3b3a387018e2
- Loading branch information
Showing
44 changed files
with
496 additions
and
358 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
env: | ||
CIRRUS_CLONE_SUBMODULES: true | ||
|
||
task: | ||
name: FreeBSD-13 | ||
freebsd_instance: | ||
image_family: freebsd-13-0 | ||
install_script: pkg install -y cmake git samtools | ||
compile_script: | | ||
mkdir build && cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release -DHAVE_TESTS=1 -DENABLE_WERROR=1 -DHAVE_SSE4_1=1 .. | ||
make -j $(sysctl -n hw.ncpu) | ||
test_script: ./util/regression/run_regression.sh ./build/src/mmseqs SCRATCH | ||
|
||
task: | ||
name: "Old compilers" | ||
container: | ||
image: debian:jessie-slim | ||
memory: 8G | ||
matrix: | ||
- name: Clang-4 | ||
install_script: apt update --yes && apt install cmake clang-4.0 libc++-dev make git ca-certificates --yes --no-install-suggests --no-install-recommends | ||
env: | ||
CC: clang-4.0 | ||
CXX: clang++-4.0 | ||
- name: GCC-4.9 | ||
install_script: apt update --yes && apt install cmake gcc-4.9 g++-4.9 make git ca-certificates --yes --no-install-suggests --no-install-recommends | ||
env: | ||
CC: gcc-4.9 | ||
CXX: g++-4.9 | ||
compile_script: | | ||
mkdir build && cd build | ||
cmake -DCMAKE_BUILD_TYPE=Release -DHAVE_TESTS=1 -DENABLE_WERROR=1 -DHAVE_SSE4_1=1 -DREQUIRE_OPENMP=0 .. | ||
make -j $(nproc --all) | ||
test_script: ./util/regression/run_regression.sh ./build/src/mmseqs SCRATCH SEARCH | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ std::vector<Command> baseCommands = { | |
"mmseqs databases PFAM pfam_db tmp\n" | ||
"mmseqs easy-search examples/QUERY.fasta pfam_db res.m8 tmp\n\n" | ||
"# Exhaustive search against sequences or profiles (works for large DBs)\n" | ||
"mmseqs easy-search examples/QUERY.fasta targetProfiles res.m8 tmp --slice-search\n\n" | ||
"mmseqs easy-search examples/QUERY.fasta targetProfiles res.m8 tmp --exhaustive-search\n\n" | ||
"# Increasing sensitivity search (from 2 to 7 in 3 steps)\n" | ||
"mmseqs easy-search examples/QUERY.fasta examples/DB.fasta result.m8 tmp --start-sens 2 -s 7 --sens-steps 3\n", | ||
"Milot Mirdita <[email protected]> & Martin Steinegger <[email protected]>", | ||
|
@@ -190,7 +190,7 @@ std::vector<Command> baseCommands = { | |
"mmseqs databases PFAM pfam_db tmp\n" | ||
"mmseqs search queryDB pfam_db resultDB tmp\n\n" | ||
"# Exhaustive search against sequences or profiles (works for large DBs)\n" | ||
"mmseqs search queryDB targetDB resultDB tmp --slice-search\n\n" | ||
"mmseqs search queryDB targetDB resultDB tmp --exhaustive-search\n\n" | ||
"# Increasing sensitivity search (from 2 to 7 in 3 steps)\n" | ||
"mmseqs search queryDB targetDB resultDB --start-sens 2 -s 7 --sens-steps 3\n", | ||
"Martin Steinegger <[email protected]>", | ||
|
@@ -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
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.