We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e08c7 commit 3da2226Copy full SHA for 3da2226
2 files changed
src/CWL/ARCtrl.CWL.fsproj
@@ -13,6 +13,7 @@
13
<Compile Include="Outputs.fs" />
14
<Compile Include="Inputs.fs" />
15
<Compile Include="WorkflowSteps.fs" />
16
+ <Compile Include="ParameterReference.fs" />
17
<Compile Include="ToolDescription.fs" />
18
<Compile Include="WorkflowDescription.fs" />
19
<Compile Include="CWLProcessingUnit.fs" />
src/CWL/ParameterReference.fs
@@ -0,0 +1,12 @@
1
+namespace ARCtrl.CWL
2
+
3
+open Fable.Core
4
+open System
5
6
+[<AttachMembers>]
7
+type CWLParameterReference = {
8
+ Key: string
9
+ Values: string ResizeArray
10
+ Type: string option
11
+}
12
0 commit comments