Visualization of coverage for amplicon sequencing
Project description
Amplicon Coverage Inspector (aci)
Amplicon Coverage Inspector (aci) is a bioinformatics tool designed to analyze the depth of amplicons using samtools. It provides a convenient way to determine the coverage and depth of specified regions in a BAM file based on a BED file.
Installation
pip install amplicon_coverage_inspector
From github
git clone https://github.com/erinyoung/ACI.git
cd ACI
pip install .
Dependencies
- python3.7+
- pandas
- matplotlib
- pysam
Usage
aci --bam input.bam --bed amplicon.bed --out out
Final files are
- out/amplicon_depth.csv : csv file of the depth of each amplicon
- out/amplicon_depth.png : boxplot of information from csv file
- out/overall_depth.csv : csv file of overall depth of bam file
- out/overall_depth.png : boxplot of information from csv file
Expected run time: About 30 seconds per amplicon when using SRR13957125 (SARS-CoV-2 with ~30 KB genome size and 5,350.27 mean depth) and the artic V3 primers. Larger genomes, more coverage, and larger amplicons increase the computation time. Use -t or --threads to take advantage of determining the coverage of amplicons in parallel.
There are not currently options to change the look of the final image file. Instead, the amplicon_depth.csv file contains all the values in a '.csv' format that can be read into R, python, excel, or another tool for visualization.
Options
usage: aci [-h] -b BAM [BAM ...] -d BED [-o OUT] [-log LOGLEVEL] [-t THREADS] [-v]
options:
-h, --help show this help message and exit
-b BAM [BAM ...], --bam BAM [BAM ...]
(required) input bam file(s)
-d BED, --bed BED (required) amplicon bedfile
-o OUT, --out OUT directory for results
-log LOGLEVEL, --loglevel LOGLEVEL
logging level
-t THREADS, --threads THREADS
specifies number of threads to use
-v, --version print version and exit
Bed file format
ACI is not very strict on the bed file format as only the first four columns are used.
The four columns (tab-delimited only) are
- Reference (must the same as the reference of the bam file)
- Start position
- Stop position
- Name of the amplicon
ACI does not support bedfiles with headers.
Example amplicon bedfile.
MN908947.3 54 385 1 1 +
MN908947.3 342 704 2 2 +
MN908947.3 664 1004 3 1 +
MN908947.3 965 1312 4 2 +
MN908947.3 1264 1623 5 1 +
MN908947.3 1595 1942 6 2 +
MN908947.3 1897 2242 7 1 +
MN908947.3 2205 2568 8 2 +
MN908947.3 2529 2880 9 1 +
MN908947.3 2850 3183 10 2 +
Amplicon bedfile
Primers should be trimmed out of the bam file prior to ACI regardless of whether the sequencing was paired or single-end. Primer sequences force portions of DNA to match reference and mask SNPs and other variants, so it is a normal request to trim primers out first.
Please be careful to not use a primer scheme bedfile because they are not the same. For an example, let's take a left and right primer based off of the reference MN908947.3. If left primer is expected to bind to 30-54 of MN908947.3, and the right primer is expected to bind to 385-410, the expected amplicon would be from 55-384.
ACI uses the bedfile to identify regions of the genome where both read1 and read2 are bounded by the start and stop location of that bedfile. If using a bam file generated with mapping single-end reads, only that one read must be within bounds. Any reads that map out of that specific region will be excluded. Then coverage is determined for that region. Therefore, all intended sequences are included. Nearby overlapping amplicons can still mask problematic primers/primer pairs and this should be taken into account when evaluating the output of ACI.
Testing
This repository contains a test bam and bed file in the /tests/data subdirectory.
aci -b tests/data/test.bam -d tests/data/test.bed -o testing
The resulting image should look something like the following.
Contributing
Contributions are welcome! If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.
Why this exists
I just needed an individual tool that evaluates how effective a set of primers are for an amplicon or bait-based NGS library prep. Similar scripts are included in many workflows including that of (artic)[https://github.com/artic-network/artic-ncov2019], but I needed something that was standalone. Samtools has a function, ampliconstats, that predicts amplicons based on a primer schema bedfile, but has errors when there are large number of primer pairs and can incorrectly pair primers when determining amplicons. This means that I needed control as to what was in the amplicon file.
License
This project is licensed under the MIT License.
Contact
For any questions or inquiries, please submit an issue.
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 amplicon_coverage_inspector-1.4.20240116.tar.gz
.
File metadata
- Download URL: amplicon_coverage_inspector-1.4.20240116.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06cf71bde19ecb8ac760c14548b3cdb24f99755da36d53daeea62cf053f5b12c |
|
MD5 | 9cb688fd1adf679d3248573ea9ca7458 |
|
BLAKE2b-256 | 69febbd075c59d773569a92747c7561b35cedc4ce4e1261f924e00f3c1ed45ad |
File details
Details for the file amplicon_coverage_inspector-1.4.20240116-py3-none-any.whl
.
File metadata
- Download URL: amplicon_coverage_inspector-1.4.20240116-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3af55862131065b5276a1f3e92feac495be870634a42d2adb7270eb59698a8bb |
|
MD5 | 093d3e7936f8358da92332c2db7f711c |
|
BLAKE2b-256 | 80a8d80ca9eb651ddbc5af7ead495fb8776907e64fb62969f4d2f6310df36fc9 |