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

Moved aligners to own package

parent b3553528
No related branches found
No related tags found
No related merge requests found
package nl.lumc.sasc.biopet.wrappers
package nl.lumc.sasc.biopet.wrappers.aligners
import nl.lumc.sasc.biopet.core._
import org.broadinstitute.sting.queue.function.CommandLineFunction
......@@ -9,7 +9,7 @@ import scala.sys.process._
class Bwa(val globalConfig: Config) extends CommandLineFunction {
def this() = this(new Config(Map()))
this.analysisName = "bwa"
val config: Config = globalConfig.getAsConfig("bwa")
val config: Config = Config.mergeConfigs(globalConfig.getAsConfig("bwa"), globalConfig)
logger.debug("Config for " + this.analysisName + ": " + config)
@Argument(doc="Bwa executeble", shortName="bwa_exe", required=false) var bwa_exe: String = config.getAsString("exe", "/usr/local/bin/bwa")
......
package nl.lumc.sasc.biopet.wrappers
package nl.lumc.sasc.biopet.wrappers.aligners
import nl.lumc.sasc.biopet.core._
import org.broadinstitute.sting.queue.function.CommandLineFunction
......
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