Skip to main content

BAM to bedGraph

bam-to-bedgraph

Convert BAM file to bedGraph file

Read Options

This tool has multiple read options to output.

  • Read 1: output Read 1
  • Read 2: output Read 2
  • Combined: output combined reads
  • Midpoint: output the midpoint between reads

Note: The Midpoint option requires proper mate-pair reading.

Command Line Interface

Usage:

java -jar ScriptManager.jar bam-format-converter bam-to-bedgraph [-1 | -2 | -a | -m]
[-hpV] [-n=<MIN_INSERT>] [-o=<outputBasename>] [-x=<MAX_INSERT>]
<bamFile>

Positional Input

This tool takes a single BAM file for input. As with other tools, this tool requires the BAM file be indexed.

Output Options

OptionDescription
-o, --output=<outputBasename>specify output directory (name will be same as original with _<strand>.bedgraph ext)
-s, --stdoutstream output file to STDOUT (cannot be used with -o flag)
-z, --gzipgzip output (default=false)

Filter Options

These filter options are shared across all the BAM Format Converter tools.

OptionDescription
-p, --mate-pairrequire proper mate pair (default not required)
-n, --min-insert=<MIN_INSERT>filter by min insert size in bp
-x, --max-insert=<MAX_INSERT>filter by max insert size in bp

Read Options

OptionDescription
-1, --read1output read 1 (default)
-2, --read2output read 2
-a, --all-readsoutput combined
-m, --midpointoutput midpoint (require PE)