17
17
18
18
19
19
class CommandOutputBinding (Serializable ):
20
- '''
20
+ """
21
21
Describes how to generate an output parameter based on the files produced.
22
- '''
22
+ """
23
23
24
24
def __init__ (self , glob = None , load_contents = None , output_eval = None ):
25
- '''
25
+ """
26
26
:param glob: Find corresponding file(s)
27
27
:type glob: STRING
28
28
:param load_contents: For each file matched, read up to the 1st 64 KiB of text and
29
29
place it in the contents field
30
30
:type load_contents: BOOLEAN
31
31
:param output_eval: Evaluate an expression to generate the output value
32
32
:type output_eval: STRING
33
- '''
33
+ """
34
34
self .glob = glob
35
35
self .loadContents = load_contents
36
36
self .outputEval = output_eval
@@ -43,9 +43,19 @@ class CommandInputParameter(Parameter):
43
43
44
44
parse_types = {"inputBinding" : [CommandLineBinding ]}
45
45
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
+ """
49
59
:param param_id: unique identifier for this parameter
50
60
:type param_id: STRING
51
61
:param label: short, human-readable label
@@ -66,24 +76,40 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
66
76
:type default: STRING
67
77
:param param_type: type of data assigned to the parameter corresponding to CWLType
68
78
: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
+ )
73
90
self .inputBinding = input_binding
74
91
self .default = default
75
92
76
93
77
94
class CommandOutputParameter (Parameter ):
78
- '''
95
+ """
79
96
An output parameter for a :class:`cwlgen.CommandLineTool`.
80
- '''
97
+ """
81
98
82
99
parse_types = {"outputBinding" : [CommandOutputBinding ]}
83
100
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
+ """
87
113
:param param_id: unique identifier for this parameter
88
114
:type param_id: STRING
89
115
:param label: short, human-readable label
@@ -102,27 +128,45 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
102
128
:type output_binding: :class:`cwlgen.CommandOutputBinding` object
103
129
:param param_type: type of data assigned to the parameter corresponding to CWLType
104
130
: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
+ )
108
142
self .outputBinding = output_binding
109
143
110
144
111
145
class CommandLineTool (Serializable ):
112
- '''
146
+ """
113
147
Contain all informations to describe a CWL command line tool.
114
- '''
148
+ """
115
149
116
- __CLASS__ = ' CommandLineTool'
150
+ __CLASS__ = " CommandLineTool"
117
151
118
152
parse_types = {'inputs' : [[CommandInputParameter ]], "outputs" : [[CommandOutputParameter ]]}
119
153
ignore_fields_on_parse = ["namespaces" , "class" ]
120
154
ignore_fields_on_convert = ["namespaces" , "class" , "metadata" , "requirements" ]
121
155
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
126
170
:type tool_id: str
127
171
:param base_command: command line for the tool
128
172
:type base_command: str | list[STRING]
@@ -145,9 +189,13 @@ def __init__(self, tool_id=None, base_command=None, label=None, doc=None,
145
189
hints (any | :class:`cwlgen.Requirement` objects)
146
190
and requirements (:class:`cwlgen.Requirement` objects)
147
191
are stored in lists which are initialized empty.
148
- '''
192
+ """
149
193
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
+ )
151
199
_LOGGER .warning ("CWL version is set up to {}." .format (DEF_VERSION ))
152
200
cwl_version = DEF_VERSION
153
201
self .cwlVersion = cwl_version
@@ -174,19 +222,19 @@ def get_dict(self):
174
222
175
223
d = super (CommandLineTool , self ).get_dict ()
176
224
177
- d [' class' ] = self .__CLASS__
225
+ d [" class" ] = self .__CLASS__
178
226
179
227
if self .metadata :
180
228
for key , value in self .metadata .__dict__ .items ():
181
229
d ["s:" + key ] = value
182
230
# - Add Namespaces
183
231
d [self .namespaces .name ] = {}
184
232
for k , v in self .namespaces .__dict__ .items ():
185
- if '$' not in v :
233
+ if "$" not in v :
186
234
d [self .namespaces .name ][k ] = v
187
235
188
236
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 }
190
238
return d
191
239
192
240
def export_string (self ):
@@ -202,10 +250,10 @@ def export(self, outfile=None):
202
250
203
251
# Write CWL file in YAML
204
252
if outfile is None :
205
- six .print_ (CWL_SHEBANG , "\n " , sep = '' )
253
+ six .print_ (CWL_SHEBANG , "\n " , sep = "" )
206
254
six .print_ (rep )
207
255
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 " )
210
258
out_write .write (rep )
211
259
out_write .close ()
0 commit comments