Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added parsers for CWL input files #199

Merged
merged 5 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ include cwl_utils/cwlNodeEngineJSConsole.js
include cwl_utils/cwlNodeEngineWithContext.js
include testdata/*.cwl
include testdata/*.yaml
include testdata/*.yml
include testdata/*.input
include testdata/*.json
include testdata/*.ttl
include testdata/*.owl
include testdata/*.js
Expand Down
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