aboutsummaryrefslogtreecommitdiff
path: root/doc/ccwl.skb
diff options
context:
space:
mode:
authorArun Isaac2023-12-01 22:34:03 +0000
committerArun Isaac2023-12-01 22:35:23 +0000
commit770b738fe62112fc16c5213bd5769a8a54074fc7 (patch)
treea704111e059737002c3c6a558ffc3449382e7fa0 /doc/ccwl.skb
parented207cdbdace951595a18548b77bc38fb3f1c6ef (diff)
downloadccwl-770b738fe62112fc16c5213bd5769a8a54074fc7.tar.gz
ccwl-770b738fe62112fc16c5213bd5769a8a54074fc7.tar.lz
ccwl-770b738fe62112fc16c5213bd5769a8a54074fc7.zip
ccwl: Implement identity construct.
* ccwl/ccwl.scm (collect-steps): Implement identity construct. * doc/ccwl.skb (Cookbook)[The identity construct]: New section. * doc/identity-construct.scm: New file.
Diffstat (limited to 'doc/ccwl.skb')
-rw-r--r--doc/ccwl.skb9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/ccwl.skb b/doc/ccwl.skb
index 726b405..cb78fd5 100644
--- a/doc/ccwl.skb
+++ b/doc/ccwl.skb
@@ -382,7 +382,14 @@ the external CWL workflow.]
(scheme-source "doc/external-cwl-workflow.scm")
[,(file "echo.cwl") is defined as]
;; TODO: Syntax highlight doc/external-cwl-workflow.cwl.
- (prog :line #f (source :file "doc/echo.cwl")))))
+ (prog :line #f (source :file "doc/echo.cwl"))))
+ (section :title [The ,(code [identity]) construct]
+ :ident "identity-construct"
+ (p [Sometimes, it is helpful for a step to simply copy all input
+keys forward to the output. This is what the ,(code [identity])
+construct is for. An example follows.]
+ (scheme-source "doc/identity-construct.scm")
+ (image :file "doc/identity-construct.png"))))
(chapter :title [Contributing]
:ident "chapter-contributing"