Skip to content

Commit 3d56459

Browse files
committed
Allow records with defaults to be accepted, also type longs
1 parent 16f4b11 commit 3d56459

File tree

4 files changed

+73
-2
lines changed

4 files changed

+73
-2
lines changed

cwltool/argparser.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -869,12 +869,24 @@ def add_argument(
869869
fieldname = name + "." + shortname(field["name"])
870870
fieldtype = field["type"]
871871
fielddescription = field.get("doc", "")
872-
add_argument(toolparser, fieldname, fieldtype, records, fielddescription)
872+
add_argument(
873+
toolparser,
874+
fieldname,
875+
fieldtype,
876+
records,
877+
fielddescription,
878+
default=default.get(shortname(field["name"]), None)
879+
if default
880+
else None,
881+
input_required=required,
882+
)
873883
return
874884
elif inptype == "string":
875885
atype = str
876886
elif inptype == "int":
877887
atype = int
888+
elif inptype == "long":
889+
atype = int
878890
elif inptype == "double":
879891
atype = float
880892
elif inptype == "float":

cwltool/main.py

-1
Original file line numberDiff line numberDiff line change
@@ -1303,7 +1303,6 @@ def main(
13031303
tool, job_order_object = tool.result(tfjob_order, tfout, runtimeContext)
13041304
if not job_order_object:
13051305
job_order_object = None
1306-
13071306
try:
13081307
initialized_job_order_object = init_job_order(
13091308
job_order_object,

tests/test_examples.py

+19
Original file line numberDiff line numberDiff line change
@@ -1685,3 +1685,22 @@ def test_command_line_tool_class() -> None:
16851685
tool_path = get_data("tests/echo.cwl")
16861686
expression_tool = factory.make(tool_path).t
16871687
assert str(expression_tool) == f"CommandLineTool: file://{tool_path}"
1688+
1689+
1690+
def test_record_default_with_long() -> None:
1691+
"""Confirm that record defaults are respected."""
1692+
tool_path = get_data("tests/wf/paramref_arguments_roundtrip.cwl")
1693+
err_code, stdout, stderr = get_main_output([tool_path])
1694+
assert err_code == 0
1695+
result = json.loads(stdout)["same_record"]
1696+
assert result["first"] == "y"
1697+
assert result["second"] == 23
1698+
assert result["third"] == 2.3
1699+
assert result["fourth"] == 4242424242
1700+
assert result["fifth"] == 4200000000000000000000000000000000000000000
1701+
assert result["sixth"]["class"] == "File"
1702+
assert result["sixth"]["basename"] == "whale.txt"
1703+
assert result["sixth"]["size"] == 1111
1704+
assert (
1705+
result["sixth"]["checksum"] == "sha1$327fc7aedf4f6b69a42a7c8b808dc5a7aff61376"
1706+
)
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!/usr/bin/env cwl-runner
2+
cwlVersion: v1.0
3+
class: CommandLineTool
4+
inputs:
5+
a_record:
6+
type:
7+
- "null"
8+
- type: record
9+
fields:
10+
first: string
11+
second: int
12+
third: float
13+
fourth: long
14+
fifth: double
15+
sixth: File
16+
default:
17+
first: y
18+
second: 23
19+
third: 2.3
20+
fourth: 4242424242
21+
fifth: 4200000000000000000000000000000000000000000
22+
sixth:
23+
class: File
24+
path: whale.txt
25+
arguments:
26+
- '{'
27+
- '"same_record": $(inputs.a_record)'
28+
- '}'
29+
outputs:
30+
same_record:
31+
type:
32+
type: record
33+
fields:
34+
first: string
35+
second: int
36+
third: float
37+
fourth: long
38+
fifth: double
39+
sixth: File
40+
baseCommand: echo
41+
stdout: cwl.output.json

0 commit comments

Comments
 (0)