10 lines
189 B
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"
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|