Use when you need to count read coverage from multiple BAM files across specific genomic regions defined in a BED, GFF, or VCF file.
multiBamCov -bams sample1.bam sample2.bam ... -bed regions.bed [options]/home/vimalinx/miniforge3/envs/bio/bin/multiBamCovreferences/help.md# 1) Basic multi-sample locus counts
multiBamCov \
-bams tumor.bam normal.bam \
-bed targets.bed
# 2) Count only proper pairs with MAPQ >= 20
multiBamCov \
-bams sample1.bam sample2.bam sample3.bam \
-bed exons.bed \
-q 20 \
-p
# 3) Count split alignments on the same strand
multiBamCov \
-bams rna1.bam rna2.bam \
-bed exons.bed \
-split \
-s
default) or include them (-D, -F).-q, -p, -s / -S, and -split deliberately so all BAMs are counted under the same policy.-bams and -bed are both required.genomeCoverageBed.-D and -F widen the reads included in counting; the default excludes duplicates and failed-QC reads.-q defaults to 0, so low-quality alignments are included unless you raise the threshold.