2010-06-15 12:43:46 +08:00
|
|
|
package org.broadinstitute.sting.queue.engine
|
|
|
|
|
|
2010-08-10 00:42:48 +08:00
|
|
|
import java.io.File
|
|
|
|
|
|
2010-06-15 12:43:46 +08:00
|
|
|
/**
|
|
|
|
|
* Represents a state between QFunctions the directed acyclic QGraph
|
2010-08-10 00:42:48 +08:00
|
|
|
* @param files The set of files that represent this node state.
|
2010-06-15 12:43:46 +08:00
|
|
|
*/
|
2010-08-10 00:42:48 +08:00
|
|
|
case class QNode (val files: Set[File])
|