Skip to content

Commit f3a45c3

Browse files
Bump to version 2.2.3.
1 parent c213d92 commit f3a45c3

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

AdapterRemoval.1

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Man page generated from reStructuredText.
22
.
3-
.TH "ADAPTERREMOVAL" "1" "Oct 01, 2017" "2.2.2" "AdapterRemoval"
3+
.TH "ADAPTERREMOVAL" "1" "Jan 22, 2019" "2.2.3" "AdapterRemoval"
44
.SH NAME
55
AdapterRemoval \- Fast short-read adapter trimming and processing
66
.
@@ -153,8 +153,7 @@ Output file to which containing paired reads for which the mate has been discard
153153
.INDENT 0.0
154154
.TP
155155
.B \-\-outputcollapsed file
156-
If –collapsed is set, contains overlapping mate\-pairs which have been merged into a single read (PE mode) or reads for which the adapter was identified by a minimum overlap, indicating that the entire template molecule is present. This does not include which have subsequently been trimmed due to low\-quality or ambiguous nucleotides. Default filename is
157-
‘basename.collapsed’
156+
If –collapsed is set, contains overlapping mate\-pairs which have been merged into a single read (PE mode) or reads for which the adapter was identified by a minimum overlap, indicating that the entire template molecule is present. This does not include which have subsequently been trimmed due to low\-quality or ambiguous nucleotides. Default filename is ‘basename.collapsed’
158157
.UNINDENT
159158
.INDENT 0.0
160159
.TP

CHANGES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Unpublished
1+
### Version 2.2.3 - 2019-01-22
22

33
* Added support for trimming reads by a fixed amount: --trim5p N --trim3p N.
44
Different values may be given for each mate: --trim5p N1 N2. Trimming is
@@ -9,6 +9,12 @@
99
the corresponding bases on the two mates differ, and if both have the same
1010
quality score. The default behavior is to select one of the two bases at
1111
random.
12+
* Fixed reporting of line numbers in error messages.
13+
* Added conda installation instructions, courtesy of Maxime Borry (maxibor).
14+
* Fixed reading mate 2 adapters specified via --adapter-list. Adapters would
15+
be used in the reverse orientation compared to --adapter2. Courtesy of
16+
Karolis (KarolisM).
17+
* Fixed various typos and improved help/error messages.
1218

1319

1420
### Version 2.2.2 - 2017-07-17

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = u'2.2.2'
57+
version = u'2.2.3'
5858
# The full version, including alpha/beta/rc tags.
59-
release = u'2.2.2'
59+
release = u'2.2.3'
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

src/main.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace ar
3131
{
3232

3333
const std::string NAME = "AdapterRemoval";
34-
const std::string VERSION = "ver. 2.2.2";
34+
const std::string VERSION = "ver. 2.2.3";
3535
const std::string HELPTEXT = \
3636
"This program searches for and removes remnant adapter sequences from\n"
3737
"your read data. The program can analyze both single end and paired end\n"

0 commit comments

Comments
 (0)