- Notifications
You must be signed in to change notification settings - Fork0
A simple tool to calculate metrics from a BAM file and filter references with uneven coverages
License
aMG-tk/bam-filter
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A simple tool to process a BAM file, filter references with uneven coverages, and estimate taxonomic abundances. FilterBAM has three main goals:
Reassign reads to the reference they belong using an E-M algorithm that takes into account the alignment score.
Estimate several metrics for each reference in the BAM file and filter those references that do not meet the defined criteria.
Perform an LCA (Last Common Ancestor) analysis using the reads that pass the filtering criteria and estimate genome normalized abundances at the rank specified.
We recommend havingconda installed to manage the virtual environments
First, we create a conda virtual environment with:
wget https://raw.githubusercontent.com/genomewalker/bam-filter/master/environment.ymlconda env create -f environment.yml
Then we proceed to install using pip:
pip install bam-filter
Using pip
pip install git+https://github.com/genomewalker/bam-filter.git
By cloning in a dedicated conda environment
git clone https://github.com/genomewalker/bam-filter.gitcd bam-filterconda env create -f environment.ymlconda activate bam-filterpip install -e.
filterBAM only needs a BAM file. For a complete list of options:
$ filterBAM --helpusage: filterBAM [-h] [--version] [--debug] {reassign,filter,lca} ...A simple tool to calculate metrics from a BAM file and filter with uneven coverage.positional arguments: {reassign,filter,lca} positional arguments reassign Reassign reads to references using an EM algorithm filter Filter references based on coverage and other metrics lca Calculate LCA for each read and estimate abundances at each rankoptional arguments: -h, --help show this help message and exit --version Print program version --debug Print debug messages (default: False)
Full list of options:
$ filterBAM reassign --helpusage: filterBAM reassign [-h] --bam BAM [-p STR] [-r FILE] [-t INT] [-i INT] [-s FLOAT] [-A FLOAT] [-l INT] [-L INT] [-n INT] [--match-reward INT] [--mismatch-penalty INT] [--gap-open-penalty INT] [--gap-extension-penalty INT] [--lambda FLOAT] [-k FLOAT] [-o [FILE]] [-m STR] [-M INT] [-N] [--tmp-dir DIR] [--disable-sort]optional arguments:-h, --help show thishelp message andexit-p STR, --prefix STR Prefix usedfor the output files (default: None)-r FILE, --reference-lengths FILE File with references lengths (default: None)-t INT, --threads INT Number of threads to use (default: 1)required arguments: --bam BAM BAM file containing aligned reads (default: None)Re-assign optional arguments: -i INT, --iters INT Number of iterationsfor the EM algorithm (default: 25)-s FLOAT, --scale FLOAT Scale toselectthe best weithing alignments (default: 0.9) -A FLOAT, --min-read-ani FLOAT Minimumread ANI to keep aread (default: 90.0) -l INT, --min-read-length INT Minimumread length (default: 30) -L INT, --max-read-length INT Maximumread length (default: inf) -n INT, --min-read-count INT Minimumread count (default: 3) --match-reward INT Match rewardfor the alignment score (default: 1) --mismatch-penalty INT Mismatch penaltyfor the alignment score (default: -2) --gap-open-penalty INT Gap open penaltyfor alignment score computation (default: 5) --gap-extension-penalty INT Gap extension penaltyfor the alignment score (default: 2) --lambda FLOAT Lambda parameterfor the alignment score (default: 1.33) -k FLOAT K parameterfor the alignment score algorithm (default: 0.621) -o [FILE], --out-bam [FILE] Save a BAM file without multimapping reads (default: None) -m STR, --sort-memory STR Set maximum memory per threadfor sorting; suffix K/M/G recognized (default: 1G) -M INT, --max-memory INT Maximum memory to usefor the EM algorithm (default: None) -N, --sort-by-name Sort byread names (default: False) --tmp-dir DIR Temporary directory (default: None)miscellaneous arguments: --disable-sort Disable sorting of the filtered BAM file (default: False)
One would run filterBAMreassign
as follows:
filterBAM reassign --bam c55d4e2df1.dedup.bam --threads 10 --iters 0 --min-read-ani 92 --reference-lengths gtdb-r202.len.map --out-bam c55d4e2df1.reassigned.bam
--bam: BAM file to process--threads: Number of threads to use--iters: Number of iterations for the EM algorithm. If set to 0, the EM algorithm will run until there are no more reads to reassign--min-read-ani: Minimum read ANI to keep a read--reference-lengths: File with the lengths of the references in the BAM file. This is used when multiple contigs have been concatenad with Ns.--out-bam: Save a BAM file without multimapping reads
Full list of options:
$ filterBAM filter --helpusage: filterBAM filter [-h] --bam BAM [-p STR] [-r FILE] [-t INT] [--reference-trim-length INT] [--trim-min INT] [--trim-max INT] [-A FLOAT] [-l INT] [-L INT] [-n INT] [-b FLOAT] [-e FLOAT] [-g FLOAT] [-B FLOAT] [-a FLOAT] [-c FLOAT] [-V FLOAT] [-C FLOAT] [--include-low-detection] [-m STR] [-N] [--disable-sort] [--scale STR] --stats [FILE] [--stats-filtered [FILE]] [--bam-filtered [FILE]] [--read-length-freqs [FILE]] [--read-hits-count [FILE]] [--knee-plot [FILE]] [--coverage-plots [FILE]] [--tmp-dir DIR] [--low-memory]optional arguments:-h, --help show thishelp message andexit-p STR, --prefix STR Prefix usedfor the output files (default: None)-r FILE, --reference-lengths FILE File with references lengths (default: None)-t INT, --threads INT Number of threads to use (default: 1)required arguments: --bam BAM BAM file containing aligned reads (default: None)Filter required arguments: --stats [FILE] Save a TSV file with the statisticsfor each reference (default: None)filtering arguments: -A FLOAT, --min-read-ani FLOAT Minimumread ANI to keep aread (default: 90.0) -l INT, --min-read-length INT Minimumread length (default: 30)-L INT, --max-read-length INT Maximumread length (default: inf)-n INT, --min-read-count INT Minimumread count (default: 3)-b FLOAT, --min-expected-breadth-ratio FLOAT Minimum expected breadth ratio (default: 0)-e FLOAT, --min-normalized-entropy FLOAT Minimum normalized entropy (default: 0)-g FLOAT, --min-normalized-gini FLOAT Minimum normalized Gini coefficient (default: 1.0) -B FLOAT, --min-breadth FLOAT Minimum breadth (default: 0)-a FLOAT, --min-avg-read-ani FLOAT Minimum averageread ANI (default: 90.0)-c FLOAT, --min-coverage-evenness FLOAT Minimum coverage evenness (default: 0) -V FLOAT, --min-coeff-var FLOAT Minimum coverage evenness calculated as SD/MEAN (default: inf) -C FLOAT, --min-coverage-mean FLOAT Minimum coverage mean (default: 0) --include-low-detection Include those references that fulfill all filtering criteria but the coverage evenness is 0 (default: False)miscellaneous arguments: --reference-trim-length INT Exclude n bases at the ends of the reference sequences (default: 0) --trim-min INT Remove coverage that are below this percentile. Usedfor the Truncated Average Depth (TAD) calculation (default: 10) --trim-max INT Remove coverage that are above this percentile. Usedfor the Truncated Average Depth (TAD) calculation (default: 90) -m STR, --sort-memory STR Set maximum memory per threadfor sorting; suffix K/M/G recognized (default: 1G)-N, --sort-by-name Sort byread names (default: False) --disable-sort Disable sorting of the filtered BAM file (default: False) --scale STR Scale taxonomic abundance by this factor; suffix K/M recognized (default: 1000000.0) --tmp-dir DIR Temporary directory (default: None) --low-memory Activate the low memory mode (default: False)output arguments: --stats-filtered [FILE] Save a TSV file with the statisticsfor each reference after filtering (default: None) --bam-filtered [FILE] Save a BAM file with the references that passed the filtering criteria (default: None) --read-length-freqs [FILE] Save a JSON file with theread length frequencies mapped to each reference (default: None) --read-hits-count [FILE] Save a TSV file with theread hits frequencies mapped to each reference (default: None) --knee-plot [FILE] Plot knee plot (default: None) --coverage-plots [FILE] Folder where to save genome coverage plots (default: None)
One would run filterBAMfilter
as follows:
filterBAM filter --bam c55d4e2df1.reassigned.bam --bam-filtered c55d4e2df1.dedup.filtered.bam --stats c55d4e2df1.dedup.stats.tsv.gz --stats-filtered c55d4e2df1.dedup.stats-filtered.tsv.gz --threads 10 --min-read-ani 92 --min-normalized-entropy 0.6
--stats: Save a TSV file with the statistics for each reference
--min-read-count: Minimum number of reads mapped to a reference in the BAM file
--min-expected-breadth-ratio: Minimum expected breadth ratio needed to keep a reference.
--min-read-ani: Minimum average read ANI that a reference has
--sort-by-name: Sort filtered BAM file by read name so it can be used inmetaDMG
--sort-memory: Memory used for each thread when sorting the filtered BAM file
--reference-lengths: File with the lengths of the references in the BAM file. This is used to calculate the coverage estimates of each reference when multiple contigs have been concatenad with Ns.
--threads: Number of threads
The program will produce two main outputs:
- A BAM file where the references that are below the defined threshold have been filtered out
- A TSV file with statistics for each reference, with the following columns:
- reference: Reference name
- n_reads: Number of reads mapped to the reference
- n_alns: Number of alignments in the reference
- read_length_mean: Mean read length mapped to the reference
- read_length_std: Standard deviation of read lengths mapped to the reference
- read_length_min: Minimum read length mapped to the reference
- read_length_max: Maximum read length mapped to the reference
- read_length_median: Medium read length mapped to the reference
- read_length_mode: Modal read length mapped to the reference
- gc_content: Average GC content of the reads mapped to the reference
- read_aligned_length: Average aligned read length mapped to the reference
- read_aln_score: Average alignment score of the reads mapped to the reference
- mapping_quality: Average mapping quality of the reads mapped to the reference
- edit_distances: Average edit distance of the reads mapped to the reference
- read_ani_mean: Average ANI of the reads mapped to the reference
- read_ani_std: Standard deviation of ANI of the reads mapped to the reference
- read_ani_median: Median ANI of the reads mapped to the reference
- bases_covered: Number of bases covered by the reference
- max_covered_bases: Maximum number of bases covered in the reference
- mean_covered_bases: Average number of bases covered in the reference
- coverage_mean: Mean depth of the reference
- coverage_mean_trunc: Mean depth of the reference after removing the 10% and 90% of the coverage values (default: TAD80 as calculatedhere)
- coverage_mean_trunc_len: Length of the reference after being truncated by the TAD(X) values
- coverage_covered_mean: Mean depth of the reference only counting covered bases
- reference_length: Real reference length
- bam_reference_length: Length reported by the BAM file
- breadth: Breadth of coverage
- exp_breadth: Expected breadth of coverage. Using the equation:expected_breadth = 1 - e-coverage
- breadth_exp_ratio: Ration between the observed and the expected depth of coverage
- n_bins: Number of bins used to calculate the read coverage distribution
- site_density: Site density of the reference
- entropy: Entropy of the read coverage distribution
- norm_entropy: Normalized entropy of the read coverage distribution
- gini: Gini coefficient of the read coverage distribution
- norm_gini: Normalized Gini coefficient of the read coverage distribution
- c_v: Coefficient of variation of the coverage
- d_i: Dispersion index
- cov_evenness: Eveness of coverage as calculatedhere.
- tax_abund_read: Counts estimated using the number of reads and normalized by the reference length.
- tax_abund_aln: Counts estimated using the number of alignments and normalized by the reference length.
- tax_abund_tad: Counts estimated using the estimated number of reads in the TAD region and normalized by the length of the TAD region
- n_reads_tad: Number of reads estimated in the TAD region using the equationC = LN / G, where C stands for the TAD coverage, N for the length of the TAD region and L for the average read length mapped to the reference.
Full list of options:
$ filterBAM lca --helpusage: filterBAM lca [-h] --bam BAM [-p STR] [-r FILE] [-t INT] [--names FILE] [--nodes FILE] [--acc2taxid FILE] [--lca-rank STR] [--lca-summary [FILE]] [--scale STR] [-m STR] [--custom] [--stats [FILE]]optional arguments:-h, --help show thishelp message andexit-p STR, --prefix STR Prefix usedfor the output files (default: None)-r FILE, --reference-lengths FILE File with references lengths (default: None)-t INT, --threads INT Number of threads to use (default: 1)required arguments: --bam BAM BAM file containing aligned reads (default: None)LCA optional arguments: --names FILE Names dmp file from taxonomy (default: None) --nodes FILE Nodes dmp file from taxonomy (default: None) --acc2taxid FILE acc2taxid file from taxonomy (default: None) --lca-rank STR Rank to usefor LCA calculation (default: species) --lca-summary [FILE] Save a TSV file with the LCA summary (default: None) --scale STR Scale taxonomic abundance by this factor; suffix K/M recognized (default: 1000000.0) -m STR, --sort-memory STR Set maximum memory per threadfor sorting; suffix K/M/G recognized (default: 1G) --custom Use custom taxdump files (default: False) --stats [FILE] A TSV file from the filter subcommand (default: None)
If you use the
--stat
option the LCA will use, when the possible, the reads inferred after calculating the TAD abundances. This is useful when the reads are not uniformly distributed across the reference. The program will produce a TSV file with the LCA summary.
One would run filterBAMlca
as follows:
filterBAM lca --bam c55d4e2df1.dedup.filtered.bam --names ./taxonomy/names.dmp --nodes ./taxonomy/nodes.dmp --acc2taxid ./taxonomy/acc2taxid.map.gz --threads 10 --lca-rank genus
--names: Names dmp file from taxonomy
--nodes: Nodes dmp file from taxonomy
--acc2taxid: acc2taxid file from taxonomy
--rank-lca: Rank to use for LCA calculation
--scale: Scale taxonomic abundance by this factor; suffix K/M recognized
The read reassignment algorithm aims to resolve multi-mapping reads by iteratively refining alignment probabilities between reads and reference sequences. It begins by calculating an initial score
where
These raw scores are then normalized in two steps. First, they are shifted to ensure they are positive:
Then, they are divided by the alignment length
Using these normalized scores, we initialize the probability
The algorithm then enters an iterative refinement phase. In each iteration, it first calculates subject weights:
where
Following this update, the algorithm filters alignments. For each read
It then applies a scaling factor
This iterative process continues until no more alignments are removed or a maximum number of iterations is reached. The final read-to-reference assignments are implicit in the filtering process, with only the highest probability alignments retained.
One of the main applications ofbam-filter is to reliably identify which potential organisms are present in a metagenomic ancient sample, and get relatively accurate taxonomic abundances, even when they are present in very low abundances. The resulting BAM file then can be used as input formetaDMG. We rely on several measures to discriminate between noise and a potential signal, analyzing the mapping results at two different levels:
- Is the observed breadth aligned with the expected one?
- Are the reads spread evenly across the reference or they are clumped in a few regions?
To assess the first question we use the concepts definedhere. We estimate the ratio between the observed and expected breadth as a function of the coverage. If we get abreadth_exp_ratio close to 1, it means that the coverage we observed is close to the one we expect based on the calculated coverage. While this measure is already a strong indicator of a potential signal, we complement it with the metrics that measure thenormalized positional entropy and thenormalized distribution inequality (Gini coefficient) of the positions in the coverage. For details on how are calculated checkhere. These two metrics will help to identify those cases where we get a highbreadth_exp_ratio but the coverage is not evenly distributed across the reference but instead is clumped in a few regions. One thing to be aware of is that we need to bin the reference to calculate those metrics. In our case, we use the ability ofnumpy.histogram to identify thenumbers of bins, either using the Sturges or the Freedman-Diaconis rule. Finally, we use theknee point detection algorithm to identify the optimal values where to filter the Gini coefficient as a function of the positional entropy.
The taxonomic abundances for each rank are estimated by normalizing the number of reads by the length of the reference. The LCA approach ranks taxonomic paths based on likelihood, selecting the most probable reference. The program also uses the TAD (Truncated Average Depth) estimated reads for the LCA analysis, which helps mitigate the effect of uneven coverages across references.
About
A simple tool to calculate metrics from a BAM file and filter references with uneven coverages
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Languages
- Python100.0%