Nanopore base calling augmentation.
Project description
Megalodon
Megalodon is a research command line tool to extract high accuracy modified base and sequence variant calls from raw nanopore reads by anchoring the information rich basecalling neural network output to a reference genome/transcriptome.
Raw nanopore reads are processed by a single command to produce basecalls (FASTA/Q), reference mappings (SAM/BAM/CRAM), modified base calls (per-read and bedgraph/bedmethyl/modVCF), sequence variant calls (per-read and VCF) and more.
Detailed documentation for all megalodon commands and algorithms can be found on the Megalodon documentation page.
Prerequisites
The primary Megalodon run mode requires the Guppy basecaller (version >= 4.0). See the community page for download/installation instructions [login required].
Megalodon is a python-based command line software package. Given a python (version >= 3.5) installation, all other requirements are handled by pip or conda.
Taiyaki is no longer required to run Megalodon, but installation is required for two specific run modes:
output mapped signal files (for basecall model training)
running the Taiyaki basecalling backend (for neural network designs including experimental layers)
Installation
pip is recommended for Megalodon installation.
pip install megalodon
conda installation is available, but not fully supported. ont_pyguppy_client_lib is not available on conda and thus must be installed with pip.
conda install megalodon pip install ont_pyguppy_client_lib
To install from github source for development, the following commands can be run.
git clone https://github.com/nanoporetech/megalodon pip install -e megalodon/
Getting Started
Megalodon must obtain the intermediate output from the basecall neural network. Guppy (production nanopore basecalling software) is the recommended backend to obtain this output from raw nanopore signal (from FAST5 files). Nanopore basecalling is compute intensive and thus it is highly recommended that GPU resources are specified (--devices) for optimal Megalodon performance.
Megalodon is accessed via the command line interface megalodon command.
# megalodon help (common args) megalodon -h # megalodon help (all args) megalodon --help-long # Example command to output basecalls, mappings, and CpG methylation in both per-read (``mod_mappings``) and aggregated (``mods``) formats # Compute settings: GPU devices 0 and 1 with 40 CPU cores megalodon \ raw_fast5s/ \ --outputs basecalls mappings mod_mappings mods \ --reference reference.fa --mod-motif Z CG 0 \ --devices 0 1 --processes 40
This command produces the megalodon_results output directory containing all requested output files and logs. The format for common outputs is described briefly below and in more detail in the full documentation
The above command uses the modified base model included in Guppy (more details below Guppy Models and Parameters). As more accurate basecalling models are trained, they are first released into the Rerio repository for research models. Once training pipelines are more thoroughly standardized and tested models will be transferred into Guppy. The code below shows how to obtain and run the R9.4.1, MinION/GridION, 5mC CpG model (more accurate 5mC CpG methylation results than default model).
# Obtain and run R9.4.1, MinION, 5mC CpG model from Rerio git clone https://github.com/nanoporetech/rerio rerio/download_model.py rerio/basecall_models/res_dna_r941_min_modbases_5mC_CpG_v001 megalodon \ raw_fast5s/ \ --guppy-params "-d ./rerio/basecall_models/" \ --guppy-config res_dna_r941_min_modbases_5mC_CpG_v001.cfg \ --outputs basecalls mappings mod_mappings mods \ --reference reference.fa --mod-motif m CG 0 \ --devices 0 1 --processes 40
The path to the guppy_basecall_server executable is required to run Megalodon. By default, Megalodon assumes Guppy (Linux GPU) is installed in the current working directory (i.e. ./ont-guppy/bin/guppy_basecall_server). Use the --guppy-server-path argument to specify a different path.
Inputs
Raw reads
Directory containing raw read FAST5 files (sub-directories recursively searched)
Reference
Genome or transcriptome sequence reference (FASTA or minimap2 index)
Variants File
Megalodon requires a set of candidate variants for --outputs variants (provide via --variant-filename argument; VCF or BCF).
Outputs
All Megalodon outputs are written into the directory specified with the --output-directory option with standard file names and extensions.
Basecalls
Format: FASTQ (default) or FASTA
Basecall-anchored modified base scores are also available in hts-spec BAM format tags (--outputs mod_basecalls).
Mappings
Format: SAM, BAM (default), or CRAM
A tab-separated mapping text summary is also produced including per-read alignment statistics.
Modified Base Calls
The basecalling model specifies the modified bases capable of being output. See megalodon_extras modified_bases describe_alphabet.
Per-read modified base calls
SQL DB containing per-read modified base scores at each covered reference location
Reference-anchored per-read modified base calls is BAM format via the Mm and Ml tags (see hts-spec specifications here).
Aggregated calls
Format: bedgraph, bedmethyl (default), and/or modVCF
In order to restrict modified base calls to a specific motif(s) specify the --mod-motif argument. For example, to restrict calls to CpG sites specify --mod-motif Z CG 0.
Sequence Variant Calls
Per-read Variant Calls
SQL DB containing per-read variant scores for each covered variant
Aggregated calls
Format: VCF
Default run mode is diploid. To run in haploid mode, set --haploid flag.
For best results on a diploid genome see the variant phasing workflow on the full documentation page.
Live Processing
Megalodon supports live run processing. Activate live processing mode by simply adding the --live-processing argument and specifying the MinKNOW output directory as the Megalodon FAST5 input directory. Megalodon will continue to search for FAST5s until the final_summary* file is created by MinKNOW, indicating data production has completed.
Guppy Models and Parameters
The basecalling model defines the modified bases capable of being output by Megalodon. Basecalling models must be trained to specifically detect a type or types of modified bases. See the Megalodon documentation here for instructions to construct modified base training data and train a new modified base model.
By default, Megalodon uses the dna_r9.4.1_450bps_modbases_dam-dcm-cpg_hac.cfg Guppy config. This config is compatible with DNA, R9.4.1, MinION/GridION reads and allows output of 5mC and 6mA calls in biological contexts (CpG, dcm and dam sites). Use the --guppy-config option to specify a different guppy model config. The appropriate Rerio model is recommended for the highest accuracy modified base calls.
All configs can be used to output basecalls and mappings (as well as signal_mappings and per_read_refs for basecall training). Modified base and sequence variant outputs require Megalodon calibration files. To list configs with default calibration files, run megalodon --list-supported-guppy-configs. See calibration documentation here for details on Megalodon model calibration.
Only flip-flop configs/models are currently supported by Megalodon (this excludes k-mer based and RLE model types).
In addition to the --guppy-config and --guppy-server-path options, a number of additional arguments control the behavior of the guppy backend. The --guppy-params argument will pass arguments directly to the guppy_basecall_server initialization call. For example to optimize GPU usage, the following option might be specified: --guppy-params "--num_callers 5 --ipc_threads 6"
Finally the --guppy-timeout arguments ensures that a run will not stall on a small number of reads taking a very long time (default 30 seconds per batch of 50 reads). The Pyguppy get completed reads invalid error "Something went wrong. return_code: result.failed" error indicate that the Guppy server is overwhelmed. Consider lowering the --processes and/or --reads-per-guppy-batch values to reduce these errors. Finding the right balance for these parameters can help achieve optimal performance on a system.
Disk Performance Considerations
The status of the extract signal input queue and output queues is displayed by default (suppress with --suppress-queues-status).
If the extract_signal input queue is often empty, Megalodon is waiting on reading raw signal from FAST5 files. If the input queue remains empty, increasing the --num-read-enumeration-threads and/or --num-extract-signal-processes parameters (defaults 8 and 2)) may improve performance. Note that [--num-read-enumeration-threads] threads will be opened within each extract signal process. Alternatively and if available, the input FAST5s disk location could be moved to faster I/O disk.
If any output status bars indicate a full queue, Megalodon will stall waiting on that process to write data to disk. Moving the --output-directory accordingly to a location with faster disk I/O performance should improve performance. Per-read modified base and variant statistics are stored in an on-disk sqlite database, which can be very dependent on disk speed and configuration.
High Quality Phased Variant Calls
In order to obtain the highest quality diploid sequence variant calls, the full variant phasing pipeline employing whatshap should be applied. This pipeline is described in detail on the full documentation page. The default diploid variant settings are optimized for the full phasing pipeline and not the highest quality diploid calls directly from a single Megalodon call.
High-Density Variants
When running Megalodon with a high density of variants (more than 1 variant per 100 reference bases), certain steps can be taken to increase performance. See variant atomize documentation for further details.
RNA
Megalodon supports processing direct RNA nanopore data. In order to process an RNA sample specify the --rna flag as well as an RNA model using the --guppy-config argument.
Megalodon performs mapping using the standard minimap2 option, map-ont, and not the splice option, so a transcriptome reference must be provided. The Megalodon code supports RNA modified base detection, but currently no RNA modified base basecalling models are released.
Megalodon does not currently perform checking that a set of reads agree with the provided model or options specified (e.g. --rna). Users should take care to ensure that the correct options are specified for each sample processed.
License and Copyright
© 2019-20 Oxford Nanopore Technologies Ltd.
Megalodon is distributed under the terms of the Oxford Nanopore Technologies, Ltd. Public License, v. 1.0. If a copy of the License was not distributed with this file, You can obtain one at http://nanoporetech.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file megalodon-2.3.0.tar.gz
.
File metadata
- Download URL: megalodon-2.3.0.tar.gz
- Upload date:
- Size: 175.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aabd59e6a62c15d78438a8ba2b9ad87baa4a675a11c88e6da327fc0412472c97 |
|
MD5 | a9d13d7ec14ebf92d3c92d2f77bb5abd |
|
BLAKE2b-256 | a3acc085b61208e30364a2d5aa52bdb9fe26b2e71331384ea510043df6c93db2 |
File details
Details for the file megalodon-2.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: megalodon-2.3.0-cp37-cp37m-macosx_10_15_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.7m, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a996c71f4001995029fd562c27478ded119712869d1a16643482e5d34b2b6c2b |
|
MD5 | f3e4506863b9561db444c321a81a89f6 |
|
BLAKE2b-256 | af89c690ee45ac097048cc7738902b9d633c469948e15d2091f203e504183c69 |