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

Extends directly on Python

parent e031256a
No related branches found
No related tags found
No related merge requests found
......@@ -7,10 +7,10 @@ import org.broadinstitute.sting.queue.function.CommandLineFunction
import org.broadinstitute.sting.commandline._
import java.io.File
class FastqSync(val globalConfig: Config) extends CommandLineFunction with Python {
class FastqSync(val globalConfig: Config) extends Python {
def this() = this(new Config(Map()))
analysisName = "fastqsync"
val config: Config = Config.mergeConfigs(globalConfig.getAsConfig(analysisName), globalConfig)
val config = Config.mergeConfigs(globalConfig.getAsConfig(analysisName.toLowerCase), globalConfig)
logger.debug("Config for " + analysisName + ": " + config)
setPythonScript("__init__.py", "scripts/pyfastqc/")
......
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