Difference between revisions of "BamUtil: recab"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 37: Line 37:
 
** base quality > [[#Minimum Recalibration Base Quality (--minBaseQual)|minBaseQual (5 by default)]]
 
** base quality > [[#Minimum Recalibration Base Quality (--minBaseQual)|minBaseQual (5 by default)]]
 
* Additional criteria for cycle != 1 (can be turned off via flags)
 
* Additional criteria for cycle != 1 (can be turned off via flags)
** previous base is a CIGAR Match/Mismatch
+
** previous base is a CIGAR Match/Mismatch (Use [[#Allow Previous Base Non-Match/Mismatch (--keepPrevNonAdjacent)|<code>--keepPrevNonAdjacent</code>]] to disable)
** previous base position is not a [[#DBSNP File (--dbsnp)|dbSNP position]]
+
** previous base position is not a [[#DBSNP File (--dbsnp)|dbSNP position]] (Use [[#Allow Previous Base DBSNP (--keepPrevDbsnp)|<code>--keepPrevDbsnp</code>]] to disable)
  
  
Line 48: Line 48:
 
Recalibrated Quality is: <math>-10 * \log \frac{mismatches + 1}{mismatches + matches + 1}</math>
 
Recalibrated Quality is: <math>-10 * \log \frac{mismatches + 1}{mismatches + matches + 1}</math>
  
 +
Alternatively, [[#Logistic Regression (--useLogReg)|logistic regression]] can be used for calculating the new quality.
  
 
If the Recalibrated Quality is greater than [[#Maximum Recalibration Base Quality (--maxBaseQual)|maxBaseQual]], the updated quality is set to maxBaseQual.
 
If the Recalibrated Quality is greater than [[#Maximum Recalibration Base Quality (--maxBaseQual)|maxBaseQual]], the updated quality is set to maxBaseQual.
Line 65: Line 66:
  
 
= Usage =
 
= Usage =
  ./bam recab (options) --in <InputBamFile> --out <OutputFile> [--log <logFile>] [--verbose] [--noeof] [--params] --refFile <ReferenceFile> [--dbsnp <dbsnpFile>] [--minBaseQual <minBaseQual>] [--maxBaseQual <maxBaseQual>] [--blended <weight>] [--skipFitModel] [--fast] [--keepPrevDbsnp] [--keepPrevNonAdjacent] [--useLogReg]
+
  ./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 =
 
= Parameters =
Line 85: Line 86:
 
--maxBaseQual <maxBaseQual>  : maximum recalibrated base quality (default: 50)
 
--maxBaseQual <maxBaseQual>  : maximum recalibrated base quality (default: 50)
 
--blended <weight>            : blended model weight
 
--blended <weight>            : blended model weight
--skipFitModel                : do not check if the logistic regression model fits the data
+
--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:
 
--fast                        : use a compact representation that only allows:
 
                                  * at most 256 Read Groups
 
                                  * at most 256 Read Groups
 
                                  * maximum quality 63
 
                                  * maximum quality 63
 
                                  * at most 127 cycles
 
                                  * at most 127 cycles
                                automatically enables skipFitModel, but is overridden by useLogReg
+
                                overrides fitModel, but is overridden by useLogReg
 
                                uses up to about 2.25G more memory than running without --fast.
 
                                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
 
--keepPrevDbsnp              : do not exclude entries where the previous base is in dbsnp when
Line 99: Line 101:
 
                                By default they are excluded from the table (except the first cycle).
 
                                By default they are excluded from the table (except the first cycle).
 
--useLogReg                  : use logistic regression calculated quality for the new quality
 
--useLogReg                  : use logistic regression calculated quality for the new quality
                                ignores setting of skipFitModel and fast.
+
                                automatically applies fitModel and overrides fast.
 
--qualField <quality tag>    : tag to get the starting base quality
 
--qualField <quality tag>    : tag to get the starting base quality
 
                                (default is to get it from the Quality field)
 
                                (default is to get it from the Quality field)
Line 123: Line 125:
 
== Reference File (<code>--refFile</code>) ==
 
== Reference File (<code>--refFile</code>) ==
  
The reference file to use for comparing read bases to the reference.
+
The reference file is a required parameter used for comparing read bases to the reference.
  
 
== DBSNP File (<code>--dbsnp</code>) ==
 
== DBSNP File (<code>--dbsnp</code>) ==
  
 
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.
 
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.
 
== Blended Model Weight (<code>--blended</code>) ==
 
 
<span style="color:red">TBD - this parameter is not yet implemented.</span>
 
  
 
== Minimum Recalibration Base Quality (<code>--minBaseQual</code>) ==
 
== Minimum Recalibration Base Quality (<code>--minBaseQual</code>) ==
Line 142: Line 140:
  
 
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.  
 
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 (<code>--blended</code>) ==
 +
 +
<span style="color:red">TBD - this parameter is not yet implemented.</span>
 +
 +
== Fit Model (<code>--fitModel</code>) ==
 +
 +
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 [[#Logistic Regression (--useLogReg)|<code>--useLogReg</code>]].  <code>--fitModel</code> is automatically applied when <code>--useLogReg</code> is specified.
 +
                             
 +
This option cannot be used in conjunction with [[#Fast Recalibration (--fast)|<code>--fast</code>]] and is overriden by <code>--fast</code>, but automatically applied by useLogReg
 +
 +
== Fast Recalibration (<code>--fast</code>) ==
 +
 +
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 [[#Fit Model (--fitModel)|<code>--fitModel</code>]], or [[#Logistic Regression (--useLogReg)|<code>--useLogReg</code>]] and overrides [[#Fit Model (--fitModel)|<code>--fitModel</code>]], but is overridden by [[#Logistic Regression (--useLogReg)|<code>--useLogReg</code>]].
 +
 +
                             
 +
This option cannot be used in conjunction with [[#Fast Recalibration (--fast)|<code>--fast</code>]] and is overriden by <code>--fast</code>, but automatically applied by useLogReg
 +
 +
== Allow Previous Base DBSNP (<code>--keepPrevDbsnp</code>) ==
 +
 +
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 (<code>--keepPrevNonAdjacent</code>) ==
 +
 +
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 (<code>--useLogReg</code>) ==
 
== Logistic Regression (<code>--useLogReg</code>) ==
  
Use the logistic regression empirical qualities for setting the new base qualities instead of the default formula-10 * log10((#mismatches+1)/(#total+1))
+
Use the logistic regression empirical qualities for setting the new base qualities instead of the default formula.
 +
 
 +
This option automatically enables [[#Fit Model (--fitModel)|<code>--fitModel</code>]] and disables [[#Fast Recalibration (--fast)|<code>--fast</code>]].
  
 
== Read the quality from a tag (<code>--qualField</code>) ==
 
== Read the quality from a tag (<code>--qualField</code>) ==

Revision as of 17:42, 18 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.

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).