-
Notifications
You must be signed in to change notification settings - Fork 108
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
Oct 24, 2018
1 parent
eb1f29a
commit a30c4bc
Showing
7 changed files
with
35 additions
and
8 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,30 @@ | ||
2018-10-24 Ben Vandervalk <[email protected]> | ||
|
||
* Release version 2.1.2 | ||
* Improved scaffold N50 on human by ~10% by | ||
implementing a new `DistanceEst --median` | ||
option (thanks to @lcoombe!) | ||
* Added a `--max-cost` option to `konnector` and | ||
`abyss-sealer`. This address a long-standing issue | ||
with indeterminately long running times, particularly | ||
for low values of `k`. | ||
|
||
abyss-pe: | ||
* Use the new `DistanceEst --median` option as the | ||
default for the scaffolding stage | ||
|
||
Dockerfile: | ||
* Fix OpenMPI setup | ||
|
||
DistanceEst: | ||
* Added `--median` option | ||
|
||
konnector: | ||
* Added `--max-cost` option to bound running time | ||
|
||
sealer: | ||
* Added `--max-cost` option to bound running time | ||
|
||
2018-09-11 Ben Vandervalk <[email protected]> | ||
|
||
* Release version 2.1.1 | ||
|
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.1" | ||
@echo "abyss-pe (ABySS) 2.1.2" | ||
@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.1, [email protected], abyss, | ||
AC_INIT(ABySS, 2.1.2, [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.TH abyss-tofastq "1" "2015-May" "ABySS 2.1.1" "User Commands" | ||
.TH abyss-tofastq "1" "2015-May" "ABySS 2.1.2" "User Commands" | ||
.SH NAME | ||
abyss-tofastq \- convert various file formats to FASTQ format | ||
.br | ||
|
@@ -13,7 +13,7 @@ or | |
Convert the input files to FASTA or FASTQ format. FILE may be in | ||
FASTA, FASTQ, qseq, export, SRA, SAM or BAM format and may be | ||
compressed with gz, bz2 or xz and may be tarred. | ||
.SH AUTHOR | ||
jSH AUTHOR | ||
Written by Shaun Jackman. | ||
.SH "REPORTING BUGS" | ||
Report bugs to <[email protected]>. | ||
|