Minor update so the debug messages don't show temp files as chromosome 208799060637697164972

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5887 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kshakir 2011-05-26 22:56:33 +00:00
parent b4af28c7df
commit fd21c5d100
1 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@
package org.broadinstitute.sting.queue.pipeline.playground
import org.testng.annotations.{DataProvider, Test}
import java.io.File
import org.broadinstitute.sting.datasources.pipeline.{PipelineSample, Pipeline}
import org.broadinstitute.sting.utils.yaml.YamlUtils
import org.broadinstitute.sting.queue.pipeline._
@ -83,7 +82,7 @@ class HybridSelectionPipelineTest {
}
private def writeYaml(testName: String, pipeline: Pipeline) = {
val yamlFile = BaseTest.createTempFile(pipeline.getProject.getName, ".yaml")
val yamlFile = BaseTest.createTempFile(pipeline.getProject.getName + ".", ".yaml")
YamlUtils.dump(pipeline, yamlFile)
yamlFile
}