• Stars
    star
    118
  • Rank 298,195 (Top 6 %)
  • Language
    Python
  • License
    Other
  • Created over 8 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An NGS read trimming tool that is specific, sensitive, and speedy. (production)

Travis CI PyPi DOI

Atropos

Atropos is tool for specific, sensitive, and speedy trimming of NGS reads. It is a fork of the venerable Cutadapt read trimmer (https://github.com/marcelm/cutadapt, DOI:10.14806/ej.17.1.200), with the primary improvements being:

  1. Multi-threading support, including an extremely fast "parallel write" mode.
  2. Implementation of a new insert alignment-based trimming algorithm for paired-end reads that is substantially more sensitive and specific than the original Cutadapt adapter alignment-based algorithm. This algorithm can also correct mismatches between the overlapping portions of the reads.
  3. Options for trimming specific types of data (miRNA, bisulfite-seq).
  4. A new command ('detect') that will detect adapter sequences and other potential contaminants.
  5. A new command ('error') that will estimate the sequencing error rate, which helps to select the appropriate adapter- and quality- trimming parameter values.
  6. A new command ('qc') that generates read statistics similar to FastQC. The trim command can also compute read statistics both before and after trimming (using the '--stats' option).
  7. Improved summary reports, including support for serialization formats (JSON, YAML, pickle), support for user-defined templates (via the optional Jinja2 dependency), and integration with MultiQC.
  8. The ability to merge overlapping reads (this is experimental and the functionality is limited).
  9. The ability to write the summary report and log messages to separate files.
  10. The ability to read SAM/BAM files and read/write interleaved FASTQ files.
  11. Direct trimming of reads from an SRA accession.
  12. A progress bar, and other minor usability enhancements.

Manual installation

Atropos is available from pypi and can be installed using pip.

First install dependencies:

  • Required
  • Maybe python libraries
    • pytest (for running unit tests)
    • progressbar2 or tqdm (progressbar support)
    • pysam (SAM/BAM input)
    • khmer 2.0+ (for detecting low-frequency adapter contamination)
    • jinja2 (for user-defined report formats)
    • ngstream (for SRA streaming), which requires ngs

Pip can be used to install atropos and optional dependencies, e.g.:

pip install atropos[tqdm,pysam,ngstream]

Conda

There is an Atropos recipe in Bioconda.

conda install -c bioconda atropos

Docker

A Docker image is available for Atropos in Docker Hub.

docker run jdidion/atropos <arguments>

Usage

Atropos is almost fully backward-compatible with cutadapt. If you currently use cutadapt, you can simply install Atropos and then substitute the executable name in your command line, with one key difference: you need to use options to specify input file names. For example:

atropos -a AGATCGGAAGAGCACACGTCTGAACTCCAGTCACGAGTTA -o trimmed.fq.gz -se reads.fq.gz

To take advantage of multi-threading, set the --threads option:

atropos --threads 8 -a AGATCGGAAGAGCACACGTCTGAACTCCAGTCACGAGTTA -o trimmed.fq.gz -se reads.fq.gz

To take advantage of the new aligner (if you have paired-end reads with 3' adapters), set the --aligner option to 'insert':

atropos --aligner insert -a AGATCGGAAGAGCACACGTCTGAACTCCAGTCACACAGTGATCTCGTATGCCGTCTTCTGCTTG \
  -A AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGATCTCGGTGGTCGCCGTATCATT -o trimmed.1.fq.gz -p trimmed.2.fq.gz \
  -pe1 reads.1.fq.gz -pe2 reads.2.fq.gz

See the Documentation for more complete usage information.

Publications

Atropos is published in PeerJ.

Please cite as:

Didion JP, Martin M, Collins FS. (2017) Atropos: specific, sensitive, and speedy trimming of sequencing reads. PeerJ 5:e3720 https://doi.org/10.7717/peerj.3720

The results in the paper can be fully reproduced using the workflow defined in the paper directory.

The citation for the original Cutadapt paper is:

Marcel Martin. "Cutadapt removes adapter sequences from high-throughput sequencing reads." EMBnet.Journal, 17(1):10-12, May 2011. http://dx.doi.org/10.14806/ej.17.1.200

Links

Roadmap

1.2

  • Migrate to xphyle for file management.
  • Migrate to pokrok for progress bar management.
  • Accept multiple input files.
  • Support SAM output (including #33).
  • Direct streaming and trimming of reads from SRA and htsget using ngstream.
  • Read "cropping" (#50)
  • Support for ThruPlex-style adapters (in which barcode is part of query sequence; #55)
  • Accessibility:
    • Create recipe for homebrew.
    • Automatically update conda and homebrew recipes for each release.
    • Create Galaxy tool description using argparse2tool.
  • Improve documentation (#24)
  • Port over improvements in latest versions of Cutadapt https://cutadapt.readthedocs.io/en/stable/
  • Switch to using entry point instead of Atropos executable.

1.3

  • Add auto-trimming mode for paired-end reads.
  • Support for UMIs.
  • Provide PacBio- and nanopore-specific options (marcelm/cutadapt#120).
  • Provide option for RNA-seq data that will trim polyA sequence.
  • Add formal config file support (#53)
  • Automate crash reporting using sentry.
  • Look at [NGMerge] for improving read merging: https://github.com/harvardinformatics/NGmerge
  • Look at replacing pysam with pybam

1.4

  • Currently, InsertAligner requires a single 3' adapter for each end. Adapter trimming will later be generalized so that A) the InsertAligner can handle multiple matched pairs of adapters and/or B) multiple different aligners can be used for different adapters.
  • Integrate with AdapterBase for improved matching of detected contaminants to known adapters, automated trimming of datasets with known adapters, and (opt-in) submission of adapter information for novel datasets.
  • Migrate to seqio (https://github.com/jdidion/seqio) for reading/writing sequence files.
  • General-purpose read filtering based on read ID: marcelm/cutadapt#107.
  • Currently, SAM/BAM input files must be name sorted; add an option to 1) pre-sort reads inline using samtools or sambamba, or 2) cache each read in memory until its mate is found.

1.5

  • Provide more user control over anchoring of adapters: marcelm/cutadapt#53.
  • Enable user to define custom read structure: https://github.com/nh13/read-structure-examples
  • Support for paired-end demultiplexing
  • Demultiplexing based on barcodes: marcelm/cutadapt#118.
  • Consider supporting different error rates for read1 vs read2.
  • Add a ClipOverlapping modifier that will remove read overlaps (as opposed to merging).
  • Look more closely at providing solutions to the Illumina two-color chemistry issue:
    • Provide and option to exempt G calls from the assessment of quality
    • Trim 3β€² Gs from reads
  • Also look at addressing any issues with one-color chemistry (iSeq).
  • Consider whether to support trimming/QC of raw IonTorrent data.

1.6

2.0

Beyond 2.0

  • Implement additional alternate alignment algorithms.
  • Implement the error detection algorithm in ADEPT: https://github.com/LANL-Bioinformatics/ADEPT
  • Explore new quality trimming algorithms
  • Scythe is an interesting new trimmer. Depending on how the benchmarks look in the forthcoming paper, we will add it to the list of tools we compare against Atropos, and perhaps implement their Bayesian approach for adapter match.
  • Experiment with replacing the multicore implementation with an asyncio-based implementation (using ProcessPoolExecutor and uvloop).
  • Automatic adaptive tuning of queue sizes to maximize the balance between memory usage and latency.
  • FastProNGS has some nice visualizations that could be included, rather than relying on MultiQC: https://github.com/Megagenomics/FastProNGS

While we consider the command-line interface to be stable, the internal code organization of Atropos is likely to change. At this time, we recommend to not directly interface with Atropos as a library (or to be prepared for your code to break). The internal code organization will be stabilized as of version 2.0, which is planned for sometime in 2017.

If you would like to suggest additional enhancements, you can submit issues and/or pull requests at our GitHub page.

More Repositories

1

biotools

A list of useful bioinformatics resources
569
star
2

pairwise-alignment

Catalogue of pairwise alignment algorithms and benchmarks
Rust
25
star
3

xphyle

Python library that facilitates opening, reading, and writing files (and file-like entities like URLs and streams) agnostic of compression format. (production)
Python
21
star
4

Zooper

Zotero plugin for updating metadata and managing PDFs. (alpha)
JavaScript
13
star
5

autoclick

Create Click-based CLIs from python3 type annotations (beta)
Python
12
star
6

pest-test

Testing framework for pest parser (similar to `tree-sitter test`)
Rust
9
star
7

feedme

A simple, flexible, and extensible RSS and Atom parser for Ruby. Based on the popular SimpleRSS library, but with many nice extra features. (retired)
Ruby
8
star
8

OpenBioinformaticsWorkshops

Open courseware for workshops in applied bioinformatics
HTML
8
star
9

papers2

Python library for interacting with a Papers2 database, plus scripts to export into various formats. (beta)
Python
6
star
10

genomics_scripts

Python scripts and functions for doing things with different types of genomic data. (unsupported)
Python
5
star
11

rna-quick

Differential gene, transcript, exon, and splice junction testing framework. (pre-alpha)
R
4
star
12

wdl-rs

Rust parser for Workflow Description Language (WDL)
Rust
4
star
13

seqio

A library for high-performance reading and writing of common NGS formats. (pre-alpha)
Python
4
star
14

driver

Generic base class for batch programs. (unsupported)
Python
4
star
15

ngsindex

Parsers for common NGS index formats (production)
Python
2
star
16

subby

Python subprocesses simplified.
Python
2
star
17

ngstream

Simple reading/streaming of NGS reads from SRA. (alpha)
Python
2
star
18

labels

This is a simple program to generate labels from a table (CSV file). (production)
Python
2
star
19

knitrtools

Library of utilities for use in RMarkdown documents. (beta)
R
1
star
20

jwnl

Java library for accessing WordNet. (retired)
Java
1
star
21

imetric-api

Project done during an NHGRI hackathon. (unsupported)
Python
1
star
22

htsget-server

htsget server; pre-alpha, deprecated (see https://gitlab.com/genomicsengland/htsget/gel-htsget instead)
Python
1
star
23

hon

An opinionated Python project management tool (pre-alpha)
Python
1
star
24

wdlkit

WDL toolkit
Python
1
star
25

pest-wdl

Pest parser grammar for Workflow Description Language (WDL)
WDL
1
star
26

audiodrama

My audio drama feeds OPML
1
star
27

jdidion.github.io

SCSS
1
star
28

dxcompiler-compile-action

A GitHub action to compile a WDL workflow using dxCompiler
Shell
1
star
29

docparse

Parse python docstrings (beta)
Python
1
star
30

fancyplots

Some useful plots for genomic data, in base R. (beta)
R
1
star
31

DEUtils

Utilities for differential expression testing. (beta)
R
1
star
32

clasp

Cell Line Authentication by SNP Profiling (CLASP). (production)
R
1
star
33

pytest-datadir-nng

The *next* next generation of python-datadir
Python
1
star
34

tree-sitter-wdl

Tree-sitter grammar for WDL (Workflow Description Language)
C
1
star