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
|
.TH BAMTOOLS "1" "September 2025" "bamtools 2.5.3+dfsg" "User Commands"
.SH NAME
bamtools \- toolkit for manipulating BAM (genome alignment) files
.SH SYNOPSIS
.B bamtools
[\-\-help] COMMAND [ARGS]
.SH DESCRIPTION
BamTools facilitates research analysis and data management using BAM
files. It copes with the enormous amount of data produced by current
sequencing technologies that is typically stored in compressed, binary
formats that are not easily handled by the text-based parsers commonly
used in bioinformatics research.
.SH OPTIONS
.TP
convert
Converts between BAM and a number of other formats
.TP
count
Prints number of alignments in BAM file(s)
.TP
coverage
Prints coverage statistics from the input BAM file
.TP
filter
Filters BAM file(s) by user\-specified criteria
.TP
header
Prints BAM header information
.TP
index
Generates index for BAM file
.TP
merge
Merge multiple BAM files into single file
.TP
random
Select random alignments from existing BAM file(s), intended more as a testing tool.
.TP
resolve
Resolves paired\-end reads (marking the IsProperPair flag as needed)
.TP
revert
Removes duplicate marks and restores original base qualities
.TP
sort
Sorts the BAM file according to some criteria
.TP
split
Splits a BAM file on user\-specified property, creating a new BAM output file for each value found
.TP
stats
Prints some basic statistics from input BAM file(s)
.PP
See 'bamtools help COMMAND' for more information on a specific command.
|