gatk-3.8/scala/qscript/examples/HelloWorld.scala

10 lines
189 B
Scala

import org.broadinstitute.sting.queue.QScript
class HelloWorld extends QScript {
def script = {
add(new CommandLineFunction {
def commandLine = "echo hello world"
})
}
}