Skip to content

Commit 23a6e4f

Browse files
author
vlad0x00
committed
Update version and drop gcc5 support
1 parent ead5be4 commit 23a6e4f

9 files changed

Lines changed: 21 additions & 30 deletions

File tree

ChangeLog

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2021-12-20 Vladimir Nikolic <[email protected]>
2+
3+
* Release version 2.3.4
4+
5+
General:
6+
* Dropped support for gcc5 due to lack of support for more recent C++ features.
7+
8+
abyss-rresolver-short:
9+
* Reduced memory consumption.
10+
* Better calculation of read size proportions in the input dataset.
11+
* Increased max read read size allowed.
12+
113
2021-11-10 Vladimir Nikolic <[email protected]>
214

315
* Release version 2.3.3
@@ -7,7 +19,7 @@
719

820
abyss-rresolver-short:
921
* Multiple read sizes are better handled. E.g. 150 and 151 are processed as one read size.
10-
* Updated default parameters.
22+
* Updated default parameters.
1123

1224
2021-10-13 Vladimir Nikolic <[email protected]>
1325

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.3.3\n"
282+
version = "abyss-samtobreak (ABySS) 2.3.4\n"
283283
usage = "Usage: samtobreak [OPTION]... [FILE]...\n\
284284
\Calculate contig and scaffold contiguity and correctness metrics.\n"
285285

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ This installs ABySS at the provided path, in this case `/path/to/abyss`.
156156
Not specifying `--prefix` would install in `/usr/local`, which requires
157157
sudo privileges when running `make install`.
158158

159-
ABySS requires a modern compiler such as GCC 4.2 or greater. If you have multiple
159+
ABySS requires a modern compiler such as GCC 6 or greater. If you have multiple
160160
versions of GCC installed, you can specify a different compiler:
161161

162-
../configure CC=gcc-4.6 CXX=g++-4.6
162+
../configure CC=gcc-10 CXX=g++-10
163163

164164
If Boost is installed at a non-standard location, you can specify the path to it:
165165

azure-pipelines.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -131,27 +131,6 @@ jobs:
131131
make -j12 distcheck
132132
displayName: Compiling ABySS with clang 10
133133
134-
- job: linux_gcc5
135-
pool:
136-
vmImage: ubuntu-latest
137-
steps:
138-
- script: |
139-
sudo apt-get update -qq
140-
sudo apt-get install -qq software-properties-common
141-
sudo add-apt-repository -y "deb http://us.archive.ubuntu.com/ubuntu bionic main universe security"
142-
sudo add-apt-repository -y "deb http://us.archive.ubuntu.com/ubuntu bionic-updates main universe restricted"
143-
sudo apt-get update -qq
144-
sudo apt-get install -qq autoconf automake gcc g++ libboost-dev libgtest-dev libopenmpi-dev libsparsehash-dev make pandoc
145-
displayName: Install common
146-
- script: sudo apt-get install -qq gcc-5 g++-5
147-
displayName: Install gcc-5
148-
- script: |
149-
./autogen.sh
150-
export DISTCHECK_CONFIGURE_FLAGS="CC=gcc-5 CXX=g++-5"
151-
./configure CC=gcc-5 CXX=g++-5 --with-mpi=/usr/lib/openmpi
152-
make -j12 distcheck
153-
displayName: Compiling ABySS with gcc-5
154-
155134
- job: linux_gcc6
156135
pool:
157136
vmImage: ubuntu-latest

bin/abyss-pe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ help:
414414
@echo 'Report bugs to https://github.com/bcgsc/abyss/issues or [email protected].'
415415

416416
version:
417-
@echo "abyss-pe (ABySS) 2.3.3"
417+
@echo "abyss-pe (ABySS) 2.3.4"
418418
@echo "Written by Shaun Jackman and Anthony Raymond."
419419
@echo
420420
@echo "Copyright 2012 Canada's Michael Smith Genome Science Centre"

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ(2.62)
2-
AC_INIT(ABySS, 2.3.3, [email protected], abyss,
2+
AC_INIT(ABySS, 2.3.4, [email protected], abyss,
33
http://www.bcgsc.ca/platform/bioinfo/software/abyss)
44

55
AC_CONFIG_MACRO_DIR([m4])

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.3.3" "User Commands"
1+
.TH ABYSS "1" "2015-May" "ABYSS (ABySS) 2.3.4" "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.3.3" "User Commands"
1+
.TH abyss-pe "1" "2015-May" "abyss-pe (ABySS) 2.3.4" "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.3.3" "User Commands"
1+
.TH abyss-tofastq "1" "2015-May" "ABySS 2.3.4" "User Commands"
22
.SH NAME
33
abyss-tofastq \- convert various file formats to FASTQ format
44
.br

0 commit comments

Comments
 (0)