diff options
author | Arun Isaac | 2021-06-28 17:10:28 +0530 |
---|---|---|
committer | Arun Isaac | 2021-06-28 17:12:45 +0530 |
commit | 04002eefc0e374783f18d0cf8857564fc38ee48a (patch) | |
tree | 5f5f911032eb01982f1d39a162289a92cbb4bf32 | |
parent | 5c19b1f0a67a0bb737c87a374f6e1cd0fb51e1f0 (diff) | |
download | ccwl-04002eefc0e374783f18d0cf8857564fc38ee48a.tar.gz ccwl-04002eefc0e374783f18d0cf8857564fc38ee48a.tar.lz ccwl-04002eefc0e374783f18d0cf8857564fc38ee48a.zip |
doc: Add workflow graphs.
* Makefile.am (DOC_IMAGES): Add checksum.svg and
decompres-compile-run.svg.
* doc/ccwl.skb (Tutorial)[Workflow with multiple steps]: Add workflow
graphs checksum.svg and decompres-compile-run.svg.
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | doc/ccwl.skb | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index b23a302..6cb3b85 100644 --- a/Makefile.am +++ b/Makefile.am @@ -66,7 +66,9 @@ EXTRA_DIST += \ # Build documentation SKRIBILO_BUILD_DIR = $(srcdir)/doc/skribilo -DOC_IMAGES = $(addprefix $(SKRIBILO_BUILD_DIR)/,) +DOC_IMAGES = $(addprefix $(SKRIBILO_BUILD_DIR)/, \ + checksum.svg \ + decompress-compile-run.svg) $(SKRIBILO_BUILD_DIR)/%.cwl: doc/%.scm $(MKDIR_P) $(SKRIBILO_BUILD_DIR) diff --git a/doc/ccwl.skb b/doc/ccwl.skb index f31cba8..51ce5bf 100644 --- a/doc/ccwl.skb +++ b/doc/ccwl.skb @@ -174,7 +174,7 @@ nothing to do with the Unix pipe. The inputs/outputs passed between steps are general CWL inputs/outputs. They need not be the standard stdin and stdout streams.]) - ;; TODO: Add workflow graph + (image :file "doc/skribilo/decompress-compile-run.svg") (p [Writing this worklow to ,(file "decompress-compile-run.scm"), compiling and running it with @@ -201,7 +201,7 @@ that are independent of each other. The workflow inputs coming into ,(code "tee"). The outputs of each step are collected together and unioned as the output of the ,(code "tee").]) - ;; TODO: Add workflow graph + (image :file "doc/skribilo/checksum.svg") (p [Writing this workflow to ,(file "checksum.scm"), compiling and running it with some file ,(file "hello.txt") gives us the |