-
Notifications
You must be signed in to change notification settings - Fork 110
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
Ben Vandervalk
committed
Nov 9, 2018
1 parent
9e29216
commit 03edfa7
Showing
7 changed files
with
25 additions
and
7 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 |
---|---|---|
@@ -1,3 +1,21 @@ | ||
2018-11-09 Ben Vandervalk <[email protected]> | ||
|
||
* Release version 2.1.4 | ||
* Major improvements to Bloom filter assembly contiguity and | ||
correctness. Bloom filter assemblies now have equivalent scaffold | ||
contiguity and better correctness than MPI assemblies of the same | ||
data, while still requiring less than 1/10th of the memory. On | ||
human, Bloom filter assembly times are still a few hours longer | ||
than MPI assemblies (e.g. 17 hours vs. 13 hours, using 48 | ||
threads). | ||
|
||
abyss-pe: | ||
* Change default value of `m` from 50 => 0, which has the effect | ||
of disallowing sequence overlaps < k-1 bp. QUAST tests on E. coli / | ||
C. elegans / H. sapiens showed that both contiguity and | ||
correctness were improved by allowing only overlaps of k-1 bp | ||
between sequence ends. | ||
|
||
2018-11-05 Ben Vandervalk <[email protected]> | ||
|
||
* Release version 2.1.3 | ||
|
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 |
---|---|---|
|
@@ -395,7 +395,7 @@ help: | |
@echo 'Report bugs to https://github.com/bcgsc/abyss/issues or [email protected].' | ||
|
||
version: | ||
@echo "abyss-pe (ABySS) 2.1.3" | ||
@echo "abyss-pe (ABySS) 2.1.4" | ||
@echo "Written by Shaun Jackman and Anthony Raymond." | ||
@echo | ||
@echo "Copyright 2012 Canada's Michael Smith Genome Science Centre" | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
AC_PREREQ(2.62) | ||
AC_INIT(ABySS, 2.1.3, [email protected], abyss, | ||
AC_INIT(ABySS, 2.1.4, [email protected], abyss, | ||
http://www.bcgsc.ca/platform/bioinfo/software/abyss) | ||
m4_include(m4/m4_ax_pthread.m4) | ||
AM_INIT_AUTOMAKE(1.9.6 foreign subdir-objects) | ||
|
@@ -263,7 +263,7 @@ elif test x"$enable_werror" = x"yes"; then | |
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra -Werror') | ||
else | ||
# default | ||
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra -Werror') | ||
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra') | ||
fi | ||
|
||
# Build abyss-paired-dbg and abyss-paired-dbg-mpi | ||
|
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