Control unscattered output file location
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@6011 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
285da580f3
commit
03a0185566
|
|
@ -111,12 +111,16 @@ class ReadDepthCNVanalysis extends QScript {
|
||||||
@Gather(classOf[org.broadinstitute.sting.queue.function.scattergather.SimpleTextGatherFunction])
|
@Gather(classOf[org.broadinstitute.sting.queue.function.scattergather.SimpleTextGatherFunction])
|
||||||
var intervalSampleOut: File = new File(t.DoC_output.getPath() + DOC_OUTPUT_SUFFIX)
|
var intervalSampleOut: File = new File(t.DoC_output.getPath() + DOC_OUTPUT_SUFFIX)
|
||||||
|
|
||||||
|
val outFile = new File(intervalSampleOut.getParentFile(), t.DoC_output.getName())
|
||||||
|
|
||||||
override def commandLine = super.commandLine +
|
override def commandLine = super.commandLine +
|
||||||
" --omitDepthOutputAtEachBase --omitLocusTable --minBaseQuality 0 --minMappingQuality " + minMappingQuality +
|
" --omitDepthOutputAtEachBase --omitLocusTable --minBaseQuality 0 --minMappingQuality " + minMappingQuality +
|
||||||
" --start " + START_BIN + " --stop " + MAX_DEPTH + " --nBins " + NUM_BINS +
|
" --start " + START_BIN + " --stop " + MAX_DEPTH + " --nBins " + NUM_BINS +
|
||||||
" -o " + new File(intervalSampleOut.getParentFile(), t.DoC_output.getName())
|
" -o " + outFile
|
||||||
|
|
||||||
override def dotString = "DOC: " + t.DoC_output
|
override def dotString = "DOC: " + t.DoC_output
|
||||||
|
|
||||||
|
this.jobOutputFile = outFile + ".out"
|
||||||
}
|
}
|
||||||
|
|
||||||
class combineDoC(DoCsToCombine: List[File]) extends CommandLineFunction {
|
class combineDoC(DoCsToCombine: List[File]) extends CommandLineFunction {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue