-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dependency on task graph branch
Signed-off-by: Ben Sherman <[email protected]>
- Loading branch information
1 parent
f46f506
commit cf5f8df
Showing
33 changed files
with
206 additions
and
553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
125 changes: 0 additions & 125 deletions
125
modules/nextflow/src/main/groovy/nextflow/dag/ConcreteDAG.groovy
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ import nextflow.script.params.TupleOutParam | |
import java.util.concurrent.atomic.AtomicLong | ||
|
||
/** | ||
* Model the abstract graph of a pipeline execution. | ||
* Model a direct acyclic graph of the pipeline execution. | ||
* | ||
* @author Paolo Di Tommaso <[email protected]> | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,19 +23,10 @@ import java.nio.file.Path | |
* @author Paolo Di Tommaso <[email protected]> | ||
* @author Mike Smoot <[email protected]> | ||
*/ | ||
trait DagRenderer { | ||
interface DagRenderer { | ||
|
||
/** | ||
* Render an abstract (process) DAG. | ||
* Render the dag to the specified file. | ||
*/ | ||
void renderAbstractGraph(DAG dag, Path file) { | ||
throw new UnsupportedOperationException("Abstract graph rendering is not supported for this file format") | ||
} | ||
|
||
/** | ||
* Render a concrete (task) DAG. | ||
*/ | ||
void renderConcreteGraph(ConcreteDAG dag, Path file) { | ||
throw new UnsupportedOperationException("Concrete graph rendering is not supported for this file format") | ||
} | ||
void renderDocument(DAG dag, Path file); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.