You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AdapterRemoval v3 is a major revision of AdapterRemoval, that aims to simplify usage by picking a sensible set of default settings, adding new features to handle a wider range of data, providing [human readable HTML reports](https://mikkelschubert.github.io/adapterremoval/examples/example.html) and machine [readable JSON files](https://mikkelschubert.github.io/adapterremoval/examples/example.json), as well as greatly improving overall throughput.
17
+
18
+
AdapterRemoval v3 is still a work in progress, but alpha release 2 is [available for download](https://github.com/MikkelSchubert/adapterremoval/releases/tag/v3.0.0-alpha2/). Documentation is available at [Read the Docs](https://adapterremoval.readthedocs.io/en/v3.0.0-alpha2/), including a guide on how to migrate from v2. Bug reports, feature requests, and other feedback is greatly appreciated.
19
+
20
+
Compiling AdapterRemoval v3 requires [libdeflate](https://github.com/ebiggers/libdeflate), [isa-l v2.30+](https://github.com/intel/isa-l), and a compiler with support for C++17. AVX512 support requires GCC v11, Clang v8, or later. Apple M1 is currently not supported.
21
+
22
+
# AdapterRemoval v2
23
+
14
24
If you use AdapterRemoval v2, then please cite the paper:
15
25
16
26
Schubert, Lindgreen, and Orlando (2016). AdapterRemoval v2: rapid adapter
@@ -23,20 +33,18 @@ AdapterRemoval was originally published in Lindgreen 2012:
23
33
Sequencing Reads, BMC Research Notes, 5:337
24
34
http://www.biomedcentral.com/1756-0500/5/337/
25
35
26
-
27
36
## Overview of major features
28
37
29
-
- Trimming of adapters sequences from single-end and paired-end FASTQ reads.
30
-
- Trimming of multiple, different adapters or adapter pairs.
31
-
- Demultiplexing of single or double indexed reads, with or without trimming
38
+
- Trimming of adapters sequences from single-end and paired-end FASTQ reads.
39
+
- Trimming of multiple, different adapters or adapter pairs.
40
+
- Demultiplexing of single or double indexed reads, with or without trimming
32
41
of adapter sequences.
33
-
- Reconstruction of adapter sequences from paired-end reads, by the pairwise
42
+
- Reconstruction of adapter sequences from paired-end reads, by the pairwise
34
43
alignment of reads in the absence of a known adapter sequence.
35
-
- Merging of overlapping read-pairs into higher-quality consensus sequences.
36
-
- Multi-threading of all operations for increased throughput.
37
-
- Reading and writing of gzip and bzip2 compressed files.
38
-
- Reading and writing of interleaved FASTQ files.
39
-
44
+
- Merging of overlapping read-pairs into higher-quality consensus sequences.
45
+
- Multi-threading of all operations for increased throughput.
46
+
- Reading and writing of gzip and bzip2 compressed files.
47
+
- Reading and writing of interleaved FASTQ files.
40
48
41
49
## Documentation
42
50
@@ -45,7 +53,6 @@ the [online documentation](https://adapterremoval.readthedocs.io/). A summary
45
53
of command-line options may also be found in the manual page, accessible via
46
54
the command "man AdapterRemoval" once AdapterRemoval has been installed.
47
55
48
-
49
56
## Installation
50
57
51
58
### Installation with Conda
@@ -54,7 +61,6 @@ If you have `Conda`_ installed on your system:
54
61
55
62
conda install -c bioconda adapterremoval
56
63
57
-
58
64
### Installing from sources
59
65
60
66
Installing AdapterRemoval from sources requires libz and libbz2.
@@ -72,7 +78,6 @@ subdirectory and may be installed by running "make install":
72
78
73
79
sudo make install
74
80
75
-
76
81
## Getting started
77
82
78
83
To run AdapterRemoval, specify the location of pair 1 and (optionally) pair 2
@@ -81,8 +86,7 @@ FASTQ using the --file1 and --file2 command-line options:
0 commit comments