Skip to content

Commit

Permalink
Updated Python parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
GlassOfWhiskey authored and mr-c committed Dec 1, 2023
1 parent 7e80015 commit 76016cd
Show file tree
Hide file tree
Showing 12 changed files with 844 additions and 1,707 deletions.
4 changes: 2 additions & 2 deletions create_cwl_from_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

def main() -> None:
"""Generate a CWL object to match "cat-tool.cwl"."""
inputs = [cwl.CommandInputParameter(id="file1", type="File")]
inputs = [cwl.CommandInputParameter(id="file1", type_="File")]
outputs = [
cwl.CommandOutputParameter(
id="output",
type="File",
type_="File",
outputBinding=cwl.CommandOutputBinding(glob="output"),
)
]
Expand Down
110 changes: 55 additions & 55 deletions cwl_utils/cwl_v1_0_expression_refactor.py

Large diffs are not rendered by default.

104 changes: 52 additions & 52 deletions cwl_utils/cwl_v1_1_expression_refactor.py

Large diffs are not rendered by default.

112 changes: 56 additions & 56 deletions cwl_utils/cwl_v1_2_expression_refactor.py

Large diffs are not rendered by default.

Loading

0 comments on commit 76016cd

Please sign in to comment.