You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/CWL/CWLTypes.fs
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,15 @@ module CWLTypes =
17
17
Writable:bool option
18
18
}
19
19
20
+
/// Primitive types with the concept of a file and directory as a builtin type.
20
21
typeCWLType=
22
+
/// Represents a file (or group of files when secondaryFiles is provided)
21
23
| File ofFileInstance
24
+
/// Represents a directory to present to a command line tool.
25
+
/// Directories are represented as objects with class of Directory. Directory objects have a number of properties that provide metadata about the directory.
22
26
| Directory ofDirectoryInstance
27
+
/// Define a file or subdirectory that must be placed in the designated output directory prior to executing the command line tool.
28
+
/// May be the result of executing an expression, such as building a configuration file from a template.
0 commit comments