Skip to content
Snippets Groups Projects
Commit 08a62d84 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

No functional changes

parent d7fd1dad
No related branches found
No related tags found
No related merge requests found
......@@ -6,13 +6,13 @@ import org.broadinstitute.sting.commandline._
import java.io.File
class Zcat(val globalConfig: Config) extends CommandLineFunction {
def this() = this(new Config(Map()))
this.analysisName = "zcat"
val config: Config = globalConfig.getAsConfig("zcat")
logger.debug("Config for " + this.analysisName + ": " + config)
@Input(doc="Zipped file") var in: File = _
@Output(doc="Unzipped file") var out: File = _
def commandLine = "zcat %s > %s".format(in, out)
def this() = this(new Config(Map()))
this.analysisName = "zcat"
val config: Config = globalConfig.getAsConfig("zcat")
logger.debug("Config for " + this.analysisName + ": " + config)
@Input(doc="Zipped file") var in: File = _
@Output(doc="Unzipped file") var out: File = _
def commandLine = "zcat %s > %s".format(in, out)
}
\ No newline at end of file
......@@ -2,6 +2,7 @@
"fastqc": { "exe": "/home/pjvan_thof/Downloads/FastQC/fastqc" },
"flexiprep": {
"native_link": true,
"fastqc": {"exe":"/home/pjvan_thof/pipelines/test/test"},
"cutadapt": {"exe":"/home/pjvan_thof/pipelines/test/test"},
"sickle": {"exe":"/home/pjvan_thof/pipelines/test/test"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment