Skip to main content

RNN based standalone assembly polisher.

Project description

P.E.P.P.E.R.

Program for Evaluating Patterns in the Pileups of Erroneous Reads

Build Status

P.E.P.P.E.R. is a deep neural network based polisher designed to work with Oxford Nanopore Sequencing technology. P.E.P.P.E.R. uses a Recurrent Neural Network (RNN) based encoder-decoder model to call a consensus sequence from the summary statistics of each genomic position. The local realignment process using SSW is used and the module does not require any prior polishing with other tools (i.e. racon).

© 2020 Kishwar Shafin, Trevor Pesout, Miten Jain, Benedict Paten.
Computational Genomics Lab (CGL), University of California, Santa Cruz.

Workflow

  • Sequence a genome and get a basecalled reads file (reads.fastq).
  • Use an assembler to get an assembly from the basecalled data (assembly.fa).
  • Use minimap2 to map reads.fastq to assembly.fa and get a bam file (reads_2_assembly.bam).
  • Use pepper polish to polish a genome.

pipeline.svg

Installation

We recommend using Linux environment to run PEPPER.

sudo apt-get -y install cmake make git gcc g++ autoconf bzip2 lzma-dev zlib1g-dev \
libcurl4-openssl-dev libpthread-stubs0-dev libbz2-dev \
liblzma-dev libhdf5-dev python3-pip python-virtualenv

We recommend using virtualenv to run pepper:

git clone https://github.com/kishwarshafin/pepper.git
cd pepper
make install
. ./vnev/bin/activate
pepper --help

Usage

Polishing involves three sub-processes make_images, call_consensus, stitch. You can run all three steps using pepper polish or run each step separately.

Download models

You can download all available PEPPER models in one command.

pepper download_models \
--output_dir </path/to/pepper_model_directory/>

One step polishing

Case 1: CPU machine

If you are using a CPU-only machine you ca use the following command:

pepper polish \
--bam </path/to/reads_2_draft_assembly.bam> \
--fasta <path/to/draft_assembly.fasta> \
--model_path <path/to/pepper/models/XXX.pkl> \
--output_file <path/to/output_polished_sequence/output_file_prefix> \
--threads <total_threads> \
--batch_size 128

Case 2: GPU machine

You can check your CUDA availability by running pepper torch_stat. If you have CUDA available and GPU devices on your machine, you can do:

pepper polish \
--bam </path/to/reads_2_draft_assembly.bam> \
--fasta <path/to/draft_assembly.fasta> \
--model_path <path/to/pepper/models/XXX.pkl> \
--output_file <path/to/output_polished_sequence/output_file_prefix> \
--threads <number_of_threads> \
--batch_size 512 \
--gpu \
--num_workers <num_workers>

You can select which CUDA devices to use with --device_ids parameter.

ARGUMENT DETAILS:
  -h, --help            show this help message and exit
  -b BAM, --bam BAM     BAM file containing mapping between reads and the
                        draft assembly.
  -f FASTA, --fasta FASTA
                        FASTA file containing the draft assembly.
  -m MODEL_PATH, --model_path MODEL_PATH
                        Path to a trained model.
  -o OUTPUT_FILE, --output_file OUTPUT_FILE
                        Path to output file with an expected prefix (i.e. -o
                        ./outputs/polished_genome)
  -t THREADS, --threads THREADS
                        Number of threads to use. Default is 5.
  -r REGION, --region REGION
                        Region in [contig_name:start-end] format
  -bs BATCH_SIZE, --batch_size BATCH_SIZE
                        Batch size for testing, default is 100. Suggested
                        values: 256/512/1024.
  -g, --gpu             If set then PyTorch will use GPUs for inference. CUDA
                        required.
  -dx, --distributed_off
                        Turn off distributed inference. This mode will disable
                        the use of multiple callers.
  -d_ids DEVICE_IDS, --device_ids DEVICE_IDS
                        List of gpu device ids to use for inference. Only used
                        in distributed setting. Example usage: --device_ids
                        0,1,2 (this will create three callers in id 'cuda:0,
                        cuda:1 and cuda:2' If none then it will use all
                        available devices.
  -w NUM_WORKERS, --num_workers NUM_WORKERS
                        Number of workers for loading images. Default is 4.
  -tpc THREADS_PER_CALLER, --threads_per_caller THREADS_PER_CALLER
                        Total threads to be used per caller. A sane value
                        would be num_callers * threads <= total_threads.
  -c CALLERS, --callers CALLERS
                        Total number of callers to spawn if doing CPU
                        inference in distributed mode.

Results

PEPPER achieves lower error rate than ONT suggested pipeline.

We compared PEPPER against Racon-Medaka pipeline and we demonstrate significantly better results for microbial genomes. We used Staphylococcus Aureus samples to evaluate these two pipelines. The PEPPER microbial model was trained on samples excluding Staphylococcus Aureus. We used r941_prom_high model to run Medaka.

PEPPER_error_rate.png

New R10 chemistry shows further improvement in polishing results

The new R10 data is now available for MinION and we polished the assembly generated with R9 data using the R10 reads. The R10 data provides significant improvement in overall quality of the genome.

PEPPER_chemistry.png

Acknowledgement

We are thankful to the developers of these packages:

Fun Fact

guppy235

The name "P.E.P.P.E.R." is also inspired from an A.I. created by Tony Stark in the Marvel Comics (Earth-616). PEPPER is named after Tony Stark's then friend and the CEO of Resilient, Pepper Potts.

© 2020 Kishwar Shafin, Trevor Pesout, Miten Jain, Benedict Paten.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pepper_polish-0.0.1.tar.gz (575.7 kB view details)

Uploaded Source

Built Distributions

pepper_polish-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (445.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pepper_polish-0.0.1.tar.gz.

File metadata

  • Download URL: pepper_polish-0.0.1.tar.gz
  • Upload date:
  • Size: 575.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0.post20191101 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.2

File hashes

Hashes for pepper_polish-0.0.1.tar.gz
Algorithm Hash digest
SHA256 6cd749364dfecff8986a9972fabe2f825a0047a0e8bc96853cc4747a6f6b0366
MD5 4ab82c697a9f5e1b1f2ece3fa808289d
BLAKE2b-256 313463b9f97acf36790039200752e50ab25ca6cf049f71a367d29c005cca30a9

See more details on using hashes here.

File details

Details for the file pepper_polish-0.0.1-py3.6-macosx-10.9-x86_64.egg.

File metadata

  • Download URL: pepper_polish-0.0.1-py3.6-macosx-10.9-x86_64.egg
  • Upload date:
  • Size: 520.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0.post20191101 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.2

File hashes

Hashes for pepper_polish-0.0.1-py3.6-macosx-10.9-x86_64.egg
Algorithm Hash digest
SHA256 cb831728336c8dba6a6bc01d97cd6bc5580527cc02c7e60e730e0e15a2f5ebb1
MD5 996e66ebb316eb46ee6854c3d9779157
BLAKE2b-256 5300dd2f471fbafb5bc7b77c4874a917378f69e29195b8f5b035ac5320f3c66b

See more details on using hashes here.

File details

Details for the file pepper_polish-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pepper_polish-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 445.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0.post20191101 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.2

File hashes

Hashes for pepper_polish-0.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cb8d2af07a831ab9c86af2cf421aa85f7cde720d21323e3294473b17778e3e2
MD5 9b4954e0780b843e98f179d6bf9478db
BLAKE2b-256 32d07898e50a163fa91a2d11fa2faa3948cd2d599907543d59032c041ad4ee6d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page