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

Added basic extension for curl

parent b648ea62
No related branches found
No related tags found
No related merge requests found
package nl.lumc.sasc.biopet.extensions
import java.io.File
import nl.lumc.sasc.biopet.core.BiopetCommandLineFunction
import nl.lumc.sasc.biopet.core.config.Configurable
import org.broadinstitute.gatk.utils.commandline.Output
/**
* Created by pjvan_thof on 8/11/15.
*/
class Curl (val root: Configurable) extends BiopetCommandLineFunction {
@Output
var output: File = _
var url: String = _
executable = config("exe", default = "curl")
override def versionCommand = executable + " --version"
override def versionRegex = """curl (\w+\.\w+\.\w+) .*""".r
def cmdLine: String = required(executable) + required(url) + " > " + required(output)
}
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