diff --git a/scala/src/org/broadinstitute/sting/queue/engine/scheduling/DispatchJobScheduler.scala b/scala/src/org/broadinstitute/sting/queue/engine/scheduling/DispatchJobScheduler.scala index c3f30c6cc..a4c5340de 100755 --- a/scala/src/org/broadinstitute/sting/queue/engine/scheduling/DispatchJobScheduler.scala +++ b/scala/src/org/broadinstitute/sting/queue/engine/scheduling/DispatchJobScheduler.scala @@ -74,6 +74,6 @@ class DispatchJobScheduler(jobGraph: DirectedGraph[ResourceNode, ResourceEdge], } private def dependencyExpression(jobs: List[LocalLsfJob]) = { - jobs.toSet[LocalLsfJob].map(_.getName).mkString("done(\"", "\") && done(\"", "\")") + jobs.toSet[LocalLsfJob].map(_.getName).mkString("ended(\"", "\") && ended(\"", "\")") } }