Skip to content
This repository was archived by the owner on Jun 9, 2020. It is now read-only.

Commit e88fa2d

Browse files
authored
Merge pull request #24 from illusional/v0.3.0-release
V0.3.0 release
2 parents d322635 + 8448470 commit e88fa2d

10 files changed

+399
-123
lines changed

cwlgen/commandlinetool.py

+82-34
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717

1818

1919
class CommandOutputBinding(Serializable):
20-
'''
20+
"""
2121
Describes how to generate an output parameter based on the files produced.
22-
'''
22+
"""
2323

2424
def __init__(self, glob=None, load_contents=None, output_eval=None):
25-
'''
25+
"""
2626
:param glob: Find corresponding file(s)
2727
:type glob: STRING
2828
:param load_contents: For each file matched, read up to the 1st 64 KiB of text and
2929
place it in the contents field
3030
:type load_contents: BOOLEAN
3131
:param output_eval: Evaluate an expression to generate the output value
3232
:type output_eval: STRING
33-
'''
33+
"""
3434
self.glob = glob
3535
self.loadContents = load_contents
3636
self.outputEval = output_eval
@@ -43,9 +43,19 @@ class CommandInputParameter(Parameter):
4343

4444
parse_types = {"inputBinding": [CommandLineBinding]}
4545

46-
def __init__(self, param_id, label=None, secondary_files=None, param_format=None,
47-
streamable=None, doc=None, input_binding=None, default=None, param_type=None):
48-
'''
46+
def __init__(
47+
self,
48+
param_id,
49+
label=None,
50+
secondary_files=None,
51+
param_format=None,
52+
streamable=None,
53+
doc=None,
54+
input_binding=None,
55+
default=None,
56+
param_type=None,
57+
):
58+
"""
4959
:param param_id: unique identifier for this parameter
5060
:type param_id: STRING
5161
:param label: short, human-readable label
@@ -66,24 +76,40 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
6676
:type default: STRING
6777
:param param_type: type of data assigned to the parameter corresponding to CWLType
6878
:type param_type: STRING
69-
'''
70-
Parameter.__init__(self, param_id=param_id, label=label,
71-
secondary_files=secondary_files, param_format=param_format,
72-
streamable=streamable, doc=doc, param_type=param_type)
79+
"""
80+
Parameter.__init__(
81+
self,
82+
param_id=param_id,
83+
label=label,
84+
secondary_files=secondary_files,
85+
param_format=param_format,
86+
streamable=streamable,
87+
doc=doc,
88+
param_type=param_type,
89+
)
7390
self.inputBinding = input_binding
7491
self.default = default
7592

7693

7794
class CommandOutputParameter(Parameter):
78-
'''
95+
"""
7996
An output parameter for a :class:`cwlgen.CommandLineTool`.
80-
'''
97+
"""
8198

8299
parse_types = {"outputBinding": [CommandOutputBinding]}
83100

84-
def __init__(self, param_id, label=None, secondary_files=None, param_format=None,
85-
streamable=None, doc=None, output_binding=None, param_type=None):
86-
'''
101+
def __init__(
102+
self,
103+
param_id,
104+
label=None,
105+
secondary_files=None,
106+
param_format=None,
107+
streamable=None,
108+
doc=None,
109+
output_binding=None,
110+
param_type=None,
111+
):
112+
"""
87113
:param param_id: unique identifier for this parameter
88114
:type param_id: STRING
89115
:param label: short, human-readable label
@@ -102,27 +128,45 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
102128
:type output_binding: :class:`cwlgen.CommandOutputBinding` object
103129
:param param_type: type of data assigned to the parameter corresponding to CWLType
104130
:type param_type: STRING
105-
'''
106-
Parameter.__init__(self, param_id, label, secondary_files, param_format, streamable,
107-
doc, param_type)
131+
"""
132+
Parameter.__init__(
133+
self,
134+
param_id,
135+
label,
136+
secondary_files,
137+
param_format,
138+
streamable,
139+
doc,
140+
param_type,
141+
)
108142
self.outputBinding = output_binding
109143

110144

111145
class CommandLineTool(Serializable):
112-
'''
146+
"""
113147
Contain all informations to describe a CWL command line tool.
114-
'''
148+
"""
115149

116-
__CLASS__ = 'CommandLineTool'
150+
__CLASS__ = "CommandLineTool"
117151

118152
parse_types = {'inputs': [[CommandInputParameter]], "outputs": [[CommandOutputParameter]]}
119153
ignore_fields_on_parse = ["namespaces", "class"]
120154
ignore_fields_on_convert = ["namespaces", "class", "metadata", "requirements"]
121155

122-
def __init__(self, tool_id=None, base_command=None, label=None, doc=None,
123-
cwl_version=None, stdin=None, stderr=None, stdout=None, path=None):
124-
'''
125-
:param tool_id: unique identifier for this tool
156+
def __init__(
157+
self,
158+
tool_id=None,
159+
base_command=None,
160+
label=None,
161+
doc=None,
162+
cwl_version=None,
163+
stdin=None,
164+
stderr=None,
165+
stdout=None,
166+
path=None
167+
):
168+
"""
169+
:param tool_id: Unique identifier for this tool
126170
:type tool_id: str
127171
:param base_command: command line for the tool
128172
:type base_command: str | list[STRING]
@@ -145,9 +189,13 @@ def __init__(self, tool_id=None, base_command=None, label=None, doc=None,
145189
hints (any | :class:`cwlgen.Requirement` objects)
146190
and requirements (:class:`cwlgen.Requirement` objects)
147191
are stored in lists which are initialized empty.
148-
'''
192+
"""
149193
if cwl_version not in CWL_VERSIONS:
150-
_LOGGER.warning("CWL version {} is not recognized as a valid version.".format(cwl_version))
194+
_LOGGER.warning(
195+
"CWL version {} is not recognized as a valid version.".format(
196+
cwl_version
197+
)
198+
)
151199
_LOGGER.warning("CWL version is set up to {}.".format(DEF_VERSION))
152200
cwl_version = DEF_VERSION
153201
self.cwlVersion = cwl_version
@@ -174,19 +222,19 @@ def get_dict(self):
174222

175223
d = super(CommandLineTool, self).get_dict()
176224

177-
d['class'] = self.__CLASS__
225+
d["class"] = self.__CLASS__
178226

179227
if self.metadata:
180228
for key, value in self.metadata.__dict__.items():
181229
d["s:" + key] = value
182230
# - Add Namespaces
183231
d[self.namespaces.name] = {}
184232
for k, v in self.namespaces.__dict__.items():
185-
if '$' not in v:
233+
if "$" not in v:
186234
d[self.namespaces.name][k] = v
187235

188236
if self.requirements:
189-
d['requirements'] = {r.get_class(): r.get_dict() for r in self.requirements}
237+
d["requirements"] = {r.get_class(): r.get_dict() for r in self.requirements}
190238
return d
191239

192240
def export_string(self):
@@ -202,10 +250,10 @@ def export(self, outfile=None):
202250

203251
# Write CWL file in YAML
204252
if outfile is None:
205-
six.print_(CWL_SHEBANG, "\n", sep='')
253+
six.print_(CWL_SHEBANG, "\n", sep="")
206254
six.print_(rep)
207255
else:
208-
out_write = open(outfile, 'w')
209-
out_write.write(CWL_SHEBANG + '\n\n')
256+
out_write = open(outfile, "w")
257+
out_write.write(CWL_SHEBANG + "\n\n")
210258
out_write.write(rep)
211259
out_write.close()

cwlgen/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 2, 8)
2-
__version__ = '.'.join(str(c) for c in version_info)
1+
version_info = (0, 3, 0)
2+
__version__ = ".".join(str(c) for c in version_info)

doc/source/changelogs.rst

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ Changelogs
88

99
Summary of developments of Python-cwlgen library.
1010

11+
v0.3
12+
====
13+
14+
v0.3.0
15+
------
16+
17+
This update brings more completeness to the v1.0 spec.
18+
19+
* Large increase in the number of supported classes
20+
* New translation mechanism
21+
* More docstrings
22+
1123
v0.2
1224
====
1325

0 commit comments

Comments
 (0)