diff --git a/biopet-framework/src/main/java/nl/lumc/sasc/biopet/wrappers/Ln.scala b/biopet-framework/src/main/java/nl/lumc/sasc/biopet/wrappers/Ln.scala index 2764aebf0eadc68fe02151597c037740d5e94a05..a9371cb61defc460cb642da9058038be3b2530b4 100644 --- a/biopet-framework/src/main/java/nl/lumc/sasc/biopet/wrappers/Ln.scala +++ b/biopet-framework/src/main/java/nl/lumc/sasc/biopet/wrappers/Ln.scala @@ -1,28 +1,22 @@ package nl.lumc.sasc.biopet.wrappers import nl.lumc.sasc.biopet.core._ -import org.broadinstitute.sting.queue.function.CommandLineFunction -//import org.broadinstitute.sting.queue.function.QFunction +import org.broadinstitute.sting.queue.function.InProcessFunction import org.broadinstitute.sting.commandline._ import java.io.File import scala.sys.process._ -class Ln(val globalConfig: Config) extends CommandLineFunction { +class Ln(val globalConfig: Config) extends InProcessFunction { def this() = this(new Config(Map())) this.analysisName = "ln" val config: Config = Config.mergeConfigs(globalConfig.getAsConfig(analysisName), globalConfig) - logger.debug("Config for " + this.analysisName + ": " + config) @Input(doc="Input file") var in: File = _ @Output(doc="Link destination") var out: File = _ - def commandLine = { - "ln -sf " + required(in) + required(out) + override def run { + val cmd = "ln -s " + in + " " + out + val exitcode = cmd.! + System.out.println("cmd: '" + cmd + "', exitcode: " + exitcode) } } - -object Ln { - def addLn(input:File, output:File) : Ln = { - return new Ln { this.in = input; this.out = output } - } -} \ No newline at end of file