Difference between revisions of "BamUtil: recab"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 64: Line 64:
  
 
The input SAM/BAM file ([[#input File (--in)|--in]]), the output SAM/BAM file ([[#output File (--out)|--out]]), and the reference file ([[#Reference File (--refFile)|--refFile]]) are required inputs.
 
The input SAM/BAM file ([[#input File (--in)|--in]]), the output SAM/BAM file ([[#output File (--out)|--out]]), and the reference file ([[#Reference File (--refFile)|--refFile]]) are required inputs.
 +
 +
 +
Recommended usage with Deduper:
 +
 +
/usr/cluster/bin/bam dedup --recab --in ${INPUT}.bam --out ${OUTPUT}.bam --force --refFile ${REF} --dbsnp ${DBSNP} --skipFit --oneChrom --storeQualTag OQ --maxBaseQual 40
 +
 +
 +
Recommended usage without Deduper:
 +
 +
/usr/cluster/bin/bam recab --in ${INPUT}.bam --out ${OUTPUT}.bam --refFile ${REF} --dbsnp ${DBSNP} --skipFit --storeQualTag OQ --maxBaseQual 40
  
 
= Usage =
 
= Usage =

Revision as of 19:53, 19 September 2012


Overview of the recab function of bamUtil

The recab option of bamUtil recalibrates a SAM/BAM file.

Recalibration can also be called as an option of bamUtil: dedup. This will perform the recalibration and the deduping in the same set of steps, increasing processing speed.

Handling Recalibration/Implementation Notes

Recalibration is a 2-step process that loops through the file twice:

  1. Build Recalibration Table
  2. Apply Recalibration Table


The Recalibration Table groups bases based on a set of covariates:

  • Read Group
  • Quality (either from the quality string or from a tag)
  • Cycle (reverse complement for reverse strands)
  • 1st/2nd read in pair
  • Previous Cycle's Base (reverse complement for reverse strands)
  • This Cycle's Base (reverse complement for reverse strands)

The Recalibration Table tracks the number of matches/mismatches for each set of covariates.


Only bases meeting all of the following criteria are used to Build the Recalibration Table:


The Recalibration Table is applied to all bases meeting all of the following criteria (even if they were not used for creating the table):


Recalibrated Quality is:

Alternatively, logistic regression can be used for calculating the new quality.

If the Recalibrated Quality is greater than maxBaseQual, the updated quality is set to maxBaseQual.


Optionally, the previous quality can be stored in a tag.


The current recalibration logic was designed for recalibrating ILLUMINA data.


How to use it

When recab is invoked without any arguments the usage information is displayed as described below under Usage.

The input SAM/BAM file (--in), the output SAM/BAM file (--out), and the reference file (--refFile) are required inputs.


Recommended usage with Deduper:

/usr/cluster/bin/bam dedup --recab --in ${INPUT}.bam --out ${OUTPUT}.bam --force --refFile ${REF} --dbsnp ${DBSNP} --skipFit --oneChrom --storeQualTag OQ --maxBaseQual 40


Recommended usage without Deduper:

/usr/cluster/bin/bam recab --in ${INPUT}.bam --out ${OUTPUT}.bam --refFile ${REF} --dbsnp ${DBSNP} --skipFit --storeQualTag OQ --maxBaseQual 40

Usage

./bam recab (options) --in <InputBamFile> --out <OutputFile> [--log <logFile>] [--verbose] [--noeof] [--params] --refFile <ReferenceFile> [--dbsnp <dbsnpFile>] [--minBaseQual <minBaseQual>] [--maxBaseQual <maxBaseQual>] [--blended <weight>] [--fitModel] [--fast] [--keepPrevDbsnp] [--keepPrevNonAdjacent] [--useLogReg]

Parameters

Required General Parameters :
	--in <infile>   : input BAM file name
	--out <outfile> : output recalibration file name
Optional General Parameters : 
	--log <logfile> : log and summary statistics (default: [outfile].log)
	--verbose       : Turn on verbose mode
	--noeof         : do not expect an EOF block on a bam file.
	--params        : print the parameter settings

Recab Specific Required Parameters
	--refFile <reference file>    : reference file name
Recab Specific Optional Parameters : 
	--dbsnp <known variance file> : dbsnp file of positions
	--minBaseQual <minBaseQual>   : minimum base quality of bases to recalibrate (default: 5)
	--maxBaseQual <maxBaseQual>   : maximum recalibrated base quality (default: 50)
	--blended <weight>            : blended model weight
	--fitModel                    : check if the logistic regression model fits the data
	                                overriden by fast, but automatically applied by useLogReg
	--fast                        : use a compact representation that only allows:
	                                   * at most 256 Read Groups
	                                   * maximum quality 63
	                                   * at most 127 cycles
	                                overrides fitModel, but is overridden by useLogReg
	                                uses up to about 2.25G more memory than running without --fast.
	--keepPrevDbsnp               : do not exclude entries where the previous base is in dbsnp when
	                                building the recalibration table
	                                By default they are excluded from the table.
	--keepPrevNonAdjacent         : do not exclude entries where the previous base is not adjacent
	                                (not a Cigar M/X/=) when building the recalibration table
	                                By default they are excluded from the table (except the first cycle).
	--useLogReg                   : use logistic regression calculated quality for the new quality
	                                automatically applies fitModel and overrides fast.
	--qualField <quality tag>     : tag to get the starting base quality
	                                (default is to get it from the Quality field)
	--storeQualTag <quality tag>  : tag to store the previous quality into

Input File (--in)

Use --in followed by your file name to specify the SAM/BAM input file.

The program automatically determines if your input file is SAM/BAM/uncompressed BAM without any input other than a filename from the user, unless your input file is stdin.

A - is used to indicate to read from stdin and the extension is used to determine the file type (no extension indicates SAM).

SAM/BAM/Uncompressed BAM from file --in yourFileName
SAM from stdin --in -
BAM from stdin --in -.bam
Uncompressed BAM from stdin --in -.ubam


Note: Uncompressed BAM is compressed using compression level-0 (so it is not an entirely uncompressed file). This matches the samtools implementation so pipes between our tools and samtools are supported.

Output File (--out)

Use --out followed by your file name to specify the SAM/BAM output file.

The file extension is used to determine whether to write SAM/BAM/uncompressed BAM. A - is used to indicate stdout and the extension for file type (no extension is SAM).

SAM to file --out yourFileName.sam
BAM to file --out yourFileName.bam
Uncompressed BAM to file --out yourFileName.ubam
SAM to stdout --out -
BAM to stdout --out -.bam
Uncompressed BAM to stdout --out -.ubam


Note: Uncompressed BAM is compressed using compression level-0 (so it is not an entirely uncompressed file). This matches the samtools implementation so pipes between our tools and samtools are supported.

Output log & Summary Statistics FileName (--log)

Output file name for writing logs & summary statistics.

If this parameter is not specified, it will write to the output file specified in --out + ".log". Or if the output bam is written to stdout (--out starts with '-'), the logs will be written to stderr. If the filename after --log starts with '-' it will write to stderr.

Turn on Verbose Mode (--verbose)

Turn on verbose logging to get more log messages in the log and to stderr.

Do not require BGZF EOF block (--noeof)

Use --noeof if you do not expect a trailing eof block in your bgzf file.

By default, the trailing empty block is expected and checked for.

Print the Program Parameters (--params)

Use --params to print the parameters for your program to stderr.

Reference File (--refFile)

The reference file is a required parameter used for comparing read bases to the reference.

DBSNP File (--dbsnp)

The dbsnp file that specifies positions to skip recalibrating. Tab delimited file with the chromosome in the first column and the 1-based position in the 2nd column.

Minimum Recalibration Base Quality (--minBaseQual)

When recalibrating reads, only positions with a base quality greater than this minimum phred quality will be recalibrated. If --minBaseQual is not specified, it is defaulted to 5.

The ILLUMINA specs indicate that any quality below 5 can be used as an error indicator so we do not want to recalibrate those.

Maximum Recalibration Base Quality (--maxBaseQual)

This value sets the maximum phred base quality assigned to a base after recalibrating. Any qualities above this value will be set to this value. It is defaulted to 50.

Blended Model Weight (--blended)

TBD - this parameter is not yet implemented.

Fit Model (--fitModel)

Check if the logistic regression model fits the data.

This option does NOT set the new qualities to the logistic regression calculated qualities, it only checks the fit. To apply the logistic regression qualities, see --useLogReg. --fitModel is automatically applied when --useLogReg is specified.

This option cannot be used in conjunction with --fast and is overriden by --fast, but automatically applied by useLogReg

Fast Recalibration (--fast)

Use a compact representation of the Recalibration Table that only allows:

  • at most 256 Read Groups
  • maximum quality 63
  • at most 127 cycles

This option will run faster than the default recalibration, but uses up to about 2.25G more memory than running without --fast.

This option cannot be used in conjunction with --fitModel, or --useLogReg and overrides --fitModel, but is overridden by --useLogReg.


This option cannot be used in conjunction with --fast and is overriden by --fast, but automatically applied by useLogReg

Allow Previous Base DBSNP (--keepPrevDbsnp)

By default bases where the previous base is in DBSNP are excluded from the Recalibration Table.

This option includes these bases in the building of the Recalibration Table.

Allow Previous Base Non-Match/Mismatch (--keepPrevNonAdjacent)

By default bases where the previous base is not a CIGAR Match/Mismatch are excluded from the Recalibration Table.

This option includes these bases in the building of the Recalibration Table.


Logistic Regression (--useLogReg)

Use the logistic regression empirical qualities for setting the new base qualities instead of the default formula.

This option automatically enables --fitModel and disables --fast.

Read the quality from a tag (--qualField)

If this parameter is set, then read the quality string from the specified tag name. If the tag is not found, the quality is read from the quality field.

Store the original quality (--storeQualTag)

If this parameter is set, the original quality will be stored as a string in the specified tag.

Return Value

Returns -1 if input parameters are invalid.

Returns the SamStatus for the reads/writes (0 on success).