Skip to content

Commit 3da2226

Browse files
committed
add CWLParameterReference type
1 parent a9e08c7 commit 3da2226

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

src/CWL/ARCtrl.CWL.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<Compile Include="Outputs.fs" />
1414
<Compile Include="Inputs.fs" />
1515
<Compile Include="WorkflowSteps.fs" />
16+
<Compile Include="ParameterReference.fs" />
1617
<Compile Include="ToolDescription.fs" />
1718
<Compile Include="WorkflowDescription.fs" />
1819
<Compile Include="CWLProcessingUnit.fs" />

src/CWL/ParameterReference.fs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)