removing temporary bam index

The clean bai file was left behind after the data processing pipeline was done
This commit is contained in:
Mauricio Carneiro 2011-08-08 10:49:28 -04:00
parent aff681e407
commit 4d6cb33612
1 changed files with 1 additions and 0 deletions

View File

@ -313,6 +313,7 @@ class DataProcessingPipeline extends QScript {
}
case class clean (inBams: File, tIntervals: File, outBam: File) extends IndelRealigner with CommandLineGATKArgs {
@Output(doc="output bai file") var bai = swapExt(outBam, ".bam", ".bai")
this.input_file :+= inBams
this.targetIntervals = tIntervals
this.out = outBam