bio-genome-intervals-coverage-analysis
$
npx mdskill add GPTomics/bioSkills/bio-genome-intervals-coverage-analysisCompute per-base and regional sequencing depth from BAM files.
- Assesses sequencing adequacy and target capture efficiency.
- Integrates bedtools, pybedtools, samtools, numpy, and pandas.
- Executes commands or calls APIs based on input BAM file paths.
- Outputs bedGraph files and statistical summaries to users.
SKILL.md
.github/skills/bio-genome-intervals-coverage-analysisView on GitHub ↗
---
name: bio-genome-intervals-coverage-analysis
description: Calculate read depth and coverage across genomic intervals using bedtools genomecov and coverage. Generate bedGraph files, compute per-base depth, and summarize coverage statistics. Use when assessing sequencing depth, creating coverage tracks, or evaluating target capture efficiency.
tool_type: mixed
primary_tool: bedtools
---
## Version Compatibility
Reference examples tested with: bedtools 2.31+, numpy 1.26+, pandas 2.2+, samtools 1.19+
Before using code patterns, verify installed versions match. If versions differ:
- Python: `pip show <package>` then `help(module.function)` to check signatures
- CLI: `<tool> --version` then `<tool> --help` to confirm flags
If code throws ImportError, AttributeError, or TypeError, introspect the installed
package and adapt the example to match the actual API rather than retrying.
# Coverage Analysis
**"Calculate sequencing coverage"** → Compute per-base or per-region depth from BAM files to assess sequencing adequacy.
- CLI: `bedtools genomecov -ibam input.bam`, `samtools depth input.bam`
- Python: `pybedtools.BedTool('input.bam').genome_coverage()` (pybedtools)
Calculate coverage and depth across genomic regions using bedtools and pybedtools.
## genomecov - Genome-wide Coverage
### Per-base Coverage (bedGraph)
```bash
# Generate bedGraph from BAM (per-base depth)
bedtools genomecov -ibam alignments.bam -bg > coverage.bedGraph
# Include zero-coverage regions
bedtools genomecov -ibam alignments.bam -bga > coverage_with_zeros.bedGraph
# Split by strand
bedtools genomecov -ibam alignments.bam -bg -strand + > plus_strand.bedGraph
bedtools genomecov -ibam alignments.bam -bg -strand - > minus_strand.bedGraph
# Scale by total reads (RPM normalization)
TOTAL=$(samtools view -c alignments.bam)
SCALE=$(echo "scale=10; 1000000/$TOTAL" | bc)
bedtools genomecov -ibam alignments.bam -bg -scale $SCALE > normalized.bedGraph
# Use only 5' end of reads
bedtools genomecov -ibam alignments.bam -bg -5 > five_prime.bedGraph
# Use only 3' end of reads
bedtools genomecov -ibam alignments.bam -bg -3 > three_prime.bedGraph
```
### Coverage Histogram
```bash
# Genome-wide coverage histogram
bedtools genomecov -ibam alignments.bam > coverage_hist.txt
# Output format: chr, depth, bases_at_depth, chr_size, fraction
# genome 0 1000000 10000000 0.1
# genome 1 5000000 10000000 0.5
# ...
```
### Coverage from BED
```bash
# Coverage from BED intervals
bedtools genomecov -i regions.bed -g genome.txt -bg > coverage.bedGraph
# BED must be sorted
bedtools sort -i regions.bed | bedtools genomecov -i stdin -g genome.txt -bg > coverage.bedGraph
```
### Python
```python
import pybedtools
# From BAM
bam = pybedtools.BedTool('alignments.bam')
coverage = bam.genome_coverage(bg=True)
coverage.saveas('coverage.bedGraph')
# With zeros
coverage = bam.genome_coverage(bga=True)
# Normalized
coverage = bam.genome_coverage(bg=True, scale=0.001)
# From BED
bed = pybedtools.BedTool('regions.bed')
coverage = bed.genome_coverage(bg=True, g='genome.txt')
```
## coverage - Coverage per Feature
### Basic Coverage
```bash
# Calculate how much of each region in A is covered by B
bedtools coverage -a targets.bed -b reads.bed > coverage_per_target.bed
# Output adds 4 columns: overlaps, bases_covered, region_length, fraction
# chr1 100 200 region1 5 50 100 0.5
# From BAM
bedtools coverage -a targets.bed -b alignments.bam > coverage.bed
# Count only (no coverage calculation)
bedtools coverage -a targets.bed -b reads.bed -counts > counts.bed
```
### Coverage Options
```bash
# Mean coverage per region
bedtools coverage -a targets.bed -b alignments.bam -mean > mean_coverage.bed
# Same strand only
bedtools coverage -a targets.bed -b alignments.bam -s > same_strand.bed
# Report depth at each position (histogram)
bedtools coverage -a targets.bed -b alignments.bam -d > per_base.bed
# Require minimum overlap
bedtools coverage -a targets.bed -b reads.bed -f 0.5 > min_overlap.bed
# Split alignments (for RNA-seq)
bedtools coverage -a exons.bed -b alignments.bam -split > exon_coverage.bed
```
### Python
```python
import pybedtools
a = pybedtools.BedTool('targets.bed')
b = pybedtools.BedTool('alignments.bam')
# Basic coverage
result = a.coverage(b)
# Mean coverage
result = a.coverage(b, mean=True)
# Counts only
result = a.coverage(b, counts=True)
# Per-base depth
result = a.coverage(b, d=True)
result.saveas('coverage.bed')
```
## multicov - Counts Across Multiple BAMs
```bash
# Count reads in regions across multiple samples
bedtools multicov -bams sample1.bam sample2.bam sample3.bam -bed regions.bed > counts.txt
# Require mapping quality
bedtools multicov -bams sample1.bam sample2.bam -bed regions.bed -q 30 > counts.txt
# Split alignments
bedtools multicov -bams sample1.bam sample2.bam -bed regions.bed -s -split > counts.txt
```
## Calculate Coverage Statistics
### Mean/Median Depth
```python
import pybedtools
import pandas as pd
import numpy as np
# Load coverage BED (from bedtools coverage -d)
bed = pybedtools.BedTool('per_base_coverage.bed')
df = bed.to_dataframe()
# Calculate stats per region
stats = df.groupby(['chrom', 'start', 'end']).agg({
'score': ['mean', 'median', 'std', 'max']
}).reset_index()
print(stats)
```
### Coverage Distribution
**Goal:** Parse a genome-wide coverage histogram to calculate mean sequencing depth and visualize the depth distribution.
**Approach:** Run bedtools genomecov to produce a histogram, parse the genome-wide depth and fraction columns, and compute weighted mean depth from the distribution.
```python
import pybedtools
# Get coverage histogram
bam = pybedtools.BedTool('alignments.bam')
hist = bam.genome_coverage()
# Parse histogram
depths = []
fractions = []
for line in open(hist.fn):
fields = line.strip().split('\t')
if fields[0] == 'genome':
depths.append(int(fields[1]))
fractions.append(float(fields[4]))
# Calculate metrics
import numpy as np
mean_depth = sum(d * f for d, f in zip(depths, fractions))
print(f'Mean depth: {mean_depth:.1f}x')
```
## Common Patterns
### Target Region Coverage Summary
```bash
# Get per-region coverage stats
bedtools coverage -a targets.bed -b alignments.bam | \
awk -v OFS='\t' '{
mean = ($NF > 0) ? $5/$6 : 0;
print $1, $2, $3, $4, $7, mean
}' > summary.bed
# Regions with low coverage
bedtools coverage -a targets.bed -b alignments.bam | \
awk '$NF < 0.8' > low_coverage.bed
```
### Normalize to CPM (Counts Per Million)
```python
import pybedtools
bam = pybedtools.BedTool('alignments.bam')
# Get total reads
import subprocess
result = subprocess.run(['samtools', 'view', '-c', 'alignments.bam'],
capture_output=True, text=True)
total_reads = int(result.stdout.strip())
# Generate CPM-normalized bedGraph
scale_factor = 1000000 / total_reads
coverage = bam.genome_coverage(bg=True, scale=scale_factor)
coverage.saveas('cpm_normalized.bedGraph')
```
### Exon Coverage for RNA-seq
```bash
# Calculate coverage across exons (handling spliced reads)
bedtools coverage -a exons.bed -b alignments.bam -split > exon_coverage.bed
# Summarize by gene
awk -v OFS='\t' '{
gene = $4; gsub(/_exon.*/, "", gene);
sum[gene] += $NF * ($3-$2);
len[gene] += $3-$2;
}
END {
for (g in sum) print g, sum[g]/len[g];
}' exon_coverage.bed > gene_coverage.txt
```
## bedGraph Format
```
# bedGraph: chr, start, end, value (0-based coordinates)
chr1 0 100 0
chr1 100 200 5.5
chr1 200 300 10.2
chr1 300 400 3.1
```
## Key Parameters
| Tool | Parameter | Description |
|------|-----------|-------------|
| genomecov -bg | bedGraph | Output bedGraph format |
| genomecov -bga | bedGraph all | Include zero coverage |
| genomecov -scale | Normalize | Scale values by factor |
| coverage -mean | Mean | Report mean coverage |
| coverage -d | Per-base | Report per-position depth |
| coverage -counts | Count | Count overlaps only |
| multicov -q | Quality | Minimum mapping quality |
## Related Skills
- bigwig-tracks - Convert bedGraph to bigWig
- alignment-files/sam-bam-basics - BAM processing
- interval-arithmetic - Intersect with regions
- chip-seq/chipseq-visualization - Peak coverage analysis
More from GPTomics/bioSkills
- bio-admet-predictionPredicts ADMET properties using ADMETlab 3.0 API or DeepChem models. Estimates bioavailability, CYP inhibition, hERG liability, and 119 toxicity endpoints with uncertainty quantification. Filters for PAINS and other structural alerts. Use when filtering compounds for drug-likeness or prioritizing leads by predicted safety.
- bio-alignment-amplicon-clippingTrim PCR primers from aligned reads in amplicon-panel BAMs using samtools ampliconclip. Use when processing SARS-CoV-2 ARTIC, hereditary cancer panels, ctDNA hot-spot panels, or any amplicon assay where primer-derived bases would falsely confirm reference at primer footprints.
- bio-alignment-filteringFilter alignments by flags, mapping quality, and regions using samtools view and pysam. Use when extracting specific reads, removing low-quality alignments, or subsetting to target regions.
- bio-alignment-indexingCreate and use BAI/CSI indices for BAM/CRAM files using samtools and pysam. Use when enabling random access to alignment files or fetching specific genomic regions.
- bio-alignment-ioRead, write, and convert multiple sequence alignment files using Biopython Bio.AlignIO. Supports Clustal, PHYLIP, Stockholm, FASTA, Nexus, and other alignment formats for phylogenetics and conservation analysis. Use when reading, writing, or converting alignment file formats.
- bio-alignment-msa-parsingParse and analyze multiple sequence alignments using Biopython. Extract sequences, identify conserved regions, analyze gaps, work with annotations, and manipulate alignment data for downstream analysis. Use when parsing or manipulating multiple sequence alignments.
- bio-alignment-msa-statisticsCalculate alignment statistics including sequence identity, conservation scores, substitution matrices, and similarity metrics. Use when comparing alignment quality, measuring sequence divergence, and analyzing evolutionary patterns.
- bio-alignment-multiplePerform multiple sequence alignment using MAFFT, MUSCLE5, ClustalOmega, or T-Coffee. Guides tool and algorithm selection based on dataset size, sequence divergence, and downstream application. Use when aligning three or more homologous sequences for phylogenetics, conservation analysis, or evolutionary studies.
- bio-alignment-pairwisePerform pairwise sequence alignment using Biopython Bio.Align.PairwiseAligner. Use when comparing two sequences, finding optimal alignments, scoring similarity, and identifying local or global matches between DNA, RNA, or protein sequences.
- bio-alignment-sortingSort alignment files by coordinate or read name using samtools and pysam. Use when preparing BAM files for indexing, variant calling, or paired-end analysis.