gatk-3.8/scala/src/org/broadinstitute/sting/queue/engine/QCommand.scala

10 lines
264 B
Scala
Executable File

package org.broadinstitute.sting.queue.engine
/**
* Defines a basic command to run
* TODO: Allow overriding arguments per command such as the job queue
*/
class QCommand(val commandString: String) extends QModelEdge {
override def toString = commandString
}