Difference between revisions of "BamUtil: polishBam"

From Genome Analysis Wiki
Jump to navigationJump to search
Line 24: Line 24:
  
 
=== Usage ===
 
=== Usage ===
  polishBAM (options) --in=<inBamFile> --out=<outBamFile>
+
  polishBAM (options) --in <inBamFile> --out <outBamFile>
  
  
Line 32: Line 32:
 
=== Example Output ===
 
=== Example Output ===
 
<pre>
 
<pre>
polishBAM (options) --in=<inBamFile> --out=<outBamFile>
 
 
</pre>
 
</pre>
  

Revision as of 15:21, 29 October 2010

Polish BAM

The polishBam program is released as part of the StatGen Library & Tools download.

polishBam trims the end of reads in a SAM/BAM file, changing read ends to ‘N’ and quality to ‘!’.


Parameters

   Required parameters: 
        -i/--in : input BAM file
        -o/--out : output BAM file
   Optional parameters:
        -v : turn on verbose mode
        -l/--log : writes logfile. <outBamFile>.log will be used if value is unspecified
        --HD : add @HD header line
        --RG : add @RG header line
        --PG : add @PG header line
        -f/--fasta : fasta reference file to compute MD5sums and update SQ tags
        --AS : AS tag for genome assembly identifier
        --UR : UR tag for @SQ tag (if different from --fasta)
        --SP : SP tag for @SQ tag
        --checkSQ : check the consistency of SQ tags (SN and LN) with existing header lines. Must be used with --fasta option

Usage

polishBAM (options) --in <inBamFile> --out <outBamFile>


Return Value

Returns 0.

Example Output