Skip to content

Commit

Permalink
Bump to version 2.2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikkelSchubert committed Jan 22, 2019
1 parent c213d92 commit f3a45c3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 2 additions & 3 deletions AdapterRemoval.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "ADAPTERREMOVAL" "1" "Oct 01, 2017" "2.2.2" "AdapterRemoval"
.TH "ADAPTERREMOVAL" "1" "Jan 22, 2019" "2.2.3" "AdapterRemoval"
.SH NAME
AdapterRemoval \- Fast short-read adapter trimming and processing
.
Expand Down Expand Up @@ -153,8 +153,7 @@ Output file to which containing paired reads for which the mate has been discard
.INDENT 0.0
.TP
.B \-\-outputcollapsed file
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’
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’
.UNINDENT
.INDENT 0.0
.TP
Expand Down
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### Unpublished
### Version 2.2.3 - 2019-01-22

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


### Version 2.2.2 - 2017-07-17
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.2.2'
version = u'2.2.3'
# The full version, including alpha/beta/rc tags.
release = u'2.2.2'
release = u'2.2.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/main.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace ar
{

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

0 comments on commit f3a45c3

Please sign in to comment.