1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
|
'\" t
.TH samtools-coverage 1 "12 September 2024" "samtools-1.21" "Bioinformatics tools"
.SH NAME
samtools coverage \- produces a histogram or table of coverage per chromosome
.\"
.\" Copyright (C) 2019, 2021, 2023 Genome Research Ltd.
.\"
.\" Author: James Bonfield <jkb@sanger.ac.uk>
.\"
.\" Permission is hereby granted, free of charge, to any person obtaining a
.\" copy of this software and associated documentation files (the "Software"),
.\" to deal in the Software without restriction, including without limitation
.\" the rights to use, copy, modify, merge, publish, distribute, sublicense,
.\" and/or sell copies of the Software, and to permit persons to whom the
.\" Software is furnished to do so, subject to the following conditions:
.\"
.\" The above copyright notice and this permission notice shall be included in
.\" all copies or substantial portions of the Software.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
.\" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
.\" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
.\" THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
.\" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
.\" FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
.\" DEALINGS IN THE SOFTWARE.
.
.\" For code blocks and examples (cf groff's Ultrix-specific man macros)
.de EX
. in +\\$1
. nf
. ft CR
..
.de EE
. ft
. fi
. in
..
.
.SH SYNOPSIS
.PP
samtools coverage
.RI [ options ]
.RI "[" in1.sam | in1.bam | in1.cram " [" in2.sam | in2.bam | in2.cram "] [...]]"
.SH DESCRIPTION
.PP
Computes the coverage at each position or region and draws an
ASCII-art histogram or tabulated text.
Coverage is defined as the percentage of positions within each bin with at
least one base aligned against it.
The tabulated form uses the following headings.
.TS
lb l .
rname Reference name / chromosome
startpos Start position
endpos End position (or sequence length)
numreads Number reads aligned to the region (after filtering)
covbases Number of covered bases with depth >= 1
coverage Percentage of covered bases [0..100]
meandepth Mean depth of coverage
meanbaseq Mean baseQ in covered region
meanmapq Mean mapQ of selected reads
.TE
.SH OPTIONS
Input options:
.TP 8
.BI -b,\ --bam-list \ FILE
List of input BAM files, one file per line [null]
.TP
.BI -l,\ --min-read-len \ INT
Ignore reads shorter than \fIINT\fR base pairs [0]
.TP
.BI -q,\ --min-MQ \ INT
Minimum mapping quality for an alignment to be used [0]
.TP
.BI -Q,\ --min-BQ \ INT
Minimum base quality for a base to be considered [0]
.TP
.BI --rf,\ --incl-flags \ STR|INT
Required flags: skip reads with mask bits unset [null]
.TP
.BI --ff,\ --excl-flags \ STR|INT
Filter flags: skip reads with mask bits set
[UNMAP,SECONDARY,QCFAIL,DUP]
.TP
.BI -d,\ --depth \ INT
Maximum allowed coverage depth [1000000]. If 0, depth is set to the maximum
integer value effectively removing any depth limit.
.PP
Output options:
.TP 8
.BI -m,\ --histogram
Show histogram instead of tabular output.
.TP
.BI -D,\ --plot-depth
As above but displays the depth of coverage instead of the percent of coverage.
This option can be used to visualize copy number variations in the terminal.
.TP
.BI -A,\ --ascii
Show only ASCII characters in histogram using colon and fullstop for
full and half height characters.
.TP
.BI -o,\ --output \ FILE
Write output to FILE [stdout].
.TP
.BI -H,\ --no-header
Don't print a header in tabular mode.
.TP
.BI -w,\ --n-bins \ INT
Number of bins in histogram. [terminal width - 40]
.TP
.BI -r,\ --region \ REG
Show specified region. Format: chr:start-end.
.TP
.BI -h,\ --help
Shows command help.
.SH EXAMPLES
Running coverage in tabular mode, on a specific region, with tabs
shown as spaces for clarity in this man page.
.EX 2
samtools coverage -r chr1:1M-12M input.bam
#rname startpos endpos numreads covbases coverage meandepth meanbaseq meanmapq
chr1 1000000 12000000 528695 1069995 9.72723 3.50281 34.4 55.8
.EE
An example of the histogram output is below, with ASCII block
characters replaced by "#" for rendering in this man page.
.EX 2
samtools coverage -A -w 32 -r chr1:1M-12M input.bam
chr1 (249.25Mbp)
> 24.19% | . | Number of reads: 528695
> 21.50% |:: | (132000 filtered)
> 18.81% |:: | Covered bases: 1.07Mbp
> 16.12% |:: : | Percent covered: 9.727%
> 13.44% |:: : . :: : :| Mean coverage: 3.5x
> 10.75% |:: :: : :: : : :| Mean baseQ: 34.4
> 8.06% |::::: : :: : : : :| Mean mapQ: 55.8
> 5.37% |::::: :: ::: : ::::: :|
> 2.69% |::::: ::: ::: ::: :::::::::| Histo bin width: 343.8Kbp
> 0.00% |:::::::::::. :::::::::::::::::::| Histo max bin: 26.873%
1.00M 4.44M 7.87M 12.00M
.EE
.EX 2
samtools coverage -m -r 'chr1:24500000-25600000' --plot-depth -w 32 -A input.bam
chr1 (249.25Mbp)
> 38.8 | .::::::: | Number of reads: 283218
> 34.5 | :::::::: | (3327 filtered)
> 30.2 | :::::::::. | Covered bases: 1.10Mbp
> 25.9 |.:::::.:.::::::::::::::::::::::.| Percent covered: 99.83%
> 21.6 |::::::::::::::::::::::::::::::::| Mean coverage: 33.2x
> 17.2 |::::::::::::::::::::::::::::::::| Mean baseQ: 37.2
> 12.9 |::::::::::::::::::::::::::::::::| Mean mapQ: 59.3
> 8.6 |::::::::::::::::::::::::::::::::|
> 4.3 |::::::::::::::::::::::::::::::::| Histo bin width: 34.5Kbp
> 0.0 |::::::::::::::::::::::::::::::::| Histo max cov: 43.117
24.50M 24.84M 25.19M 25.60M
.EE
.SH AUTHOR
.PP
Written by Florian P Breitwieser.
.SH SEE ALSO
.IR samtools (1),
.IR samtools-depth (1),
.PP
Samtools website: <http://www.htslib.org/>
|