Skip to content

Commit aafcb4c

Browse files
author
Ben Vandervalk
committed
release 2.1.1
1 parent d41c848 commit aafcb4c

8 files changed

Lines changed: 39 additions & 8 deletions

File tree

BloomDBG/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ abyss_bloom_dbg_SOURCES = \
2626
RollingHashIterator.h \
2727
SpacedSeed.h \
2828
$(top_srcdir)/lib/bloomfilter/BloomFilter.hpp \
29-
$(top_srcdir)/lib/rolling-hash/rolling.h
29+
$(top_srcdir)/lib/nthash/nthash.hpp

ChangeLog

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
2018-09-11 Ben Vandervalk <benv@bcgsc.ca>
2+
3+
* Release version 2.1.1
4+
5+
abyss-bloom-dbg:
6+
* upgrade to most recent version of ntHash to reduce
7+
some assembly/hashing artifacts. On a human assembly, this
8+
reduced QUAST major misassemblies by 5% and increased
9+
scaffold contiguity by 10%
10+
* `kc` parameter now also applies to MPI assemblies (see below)
11+
12+
abyss-fac:
13+
* change N20 and N80 to N25 and N75, respectively
14+
15+
ABYSS-P:
16+
* add `--kc` option, with implements a hard minimum k-mer
17+
multiplicity cutoff
18+
19+
abyss-pe:
20+
* fix `zsh: no such option: pipefail` error with
21+
old versions of `zsh` (fallback to `bash` instead)
22+
* adding `time=1` now times *all* assembly commands
23+
24+
abyss-sealer:
25+
* parallelize gap sealing with OpenMP (thanks to
26+
@schutzekatze!)
27+
* add `--gap-file` option (thanks to @schutzekatze!)
28+
29+
DistanceEst:
30+
* add support for GFA output
31+
132
2018-04-13 Ben Vandervalk <benv@bcgsc.ca>
233

334
* Release version 2.1.0

Misc/samtobreak.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ parseArgs = do
279279
where
280280
help = putStr (usageInfo usage options) >> exitSuccess
281281
tryHelp = "Try 'abyss-samtobreak --help' for more information."
282-
version = "abyss-samtobreak (ABySS) 2.1.0\n"
282+
version = "abyss-samtobreak (ABySS) 2.1.1\n"
283283
usage = "Usage: samtobreak [OPTION]... [FILE]...\n\
284284
\Calculate contig and scaffold contiguity and correctness metrics.\n"
285285

bin/abyss-pe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ help:
395395
@echo 'Report bugs to https://github.com/bcgsc/abyss/issues or abyss-users@bcgsc.ca.'
396396

397397
version:
398-
@echo "abyss-pe (ABySS) 2.1.0"
398+
@echo "abyss-pe (ABySS) 2.1.1"
399399
@echo "Written by Shaun Jackman and Anthony Raymond."
400400
@echo
401401
@echo "Copyright 2012 Canada's Michael Smith Genome Science Centre"

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ(2.62)
2-
AC_INIT(ABySS, 2.1.0, abyss-users@bcgsc.ca, abyss,
2+
AC_INIT(ABySS, 2.1.1, abyss-users@bcgsc.ca, abyss,
33
http://www.bcgsc.ca/platform/bioinfo/software/abyss)
44
m4_include(m4/m4_ax_pthread.m4)
55
AM_INIT_AUTOMAKE(1.9.6 foreign subdir-objects)
@@ -263,7 +263,7 @@ elif test x"$enable_werror" = x"yes"; then
263263
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra -Werror')
264264
else
265265
# default
266-
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra -Werror')
266+
AC_SUBST(AM_CXXFLAGS, '-Wall -Wextra')
267267
fi
268268

269269
# Build abyss-paired-dbg and abyss-paired-dbg-mpi

doc/ABYSS.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH ABYSS "1" "2015-May" "ABYSS (ABySS) 2.1.0" "User Commands"
1+
.TH ABYSS "1" "2015-May" "ABYSS (ABySS) 2.1.1" "User Commands"
22
.SH NAME
33
ABYSS \- assemble short reads into contigs
44
.SH SYNOPSIS

doc/abyss-pe.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH abyss-pe "1" "2015-May" "abyss-pe (ABySS) 2.1.0" "User Commands"
1+
.TH abyss-pe "1" "2015-May" "abyss-pe (ABySS) 2.1.1" "User Commands"
22
.SH NAME
33
abyss-pe - assemble reads into contigs
44
.SH SYNOPSIS

doc/abyss-tofastq.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH abyss-tofastq "1" "2015-May" "ABySS 2.1.0" "User Commands"
1+
.TH abyss-tofastq "1" "2015-May" "ABySS 2.1.1" "User Commands"
22
.SH NAME
33
abyss-tofastq \- convert various file formats to FASTQ format
44
.br

0 commit comments

Comments
 (0)