@@ -147,6 +147,9 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
147
147
def get_dict (self ):
148
148
'''
149
149
Transform the object to a [DICT] to write CWL
150
+
151
+ :return: dictionnary of the object
152
+ :rtype: DICT
150
153
'''
151
154
dict_param = {}
152
155
if self .type :
@@ -203,6 +206,9 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
203
206
def get_dict (self ):
204
207
'''
205
208
Transform the object to a [DICT] to write CWL.
209
+
210
+ :return: dictionnary of the object
211
+ :rtype: DICT
206
212
'''
207
213
dict_in = Parameter .get_dict (self )
208
214
if self .default :
@@ -246,6 +252,9 @@ def __init__(self, param_id, label=None, secondary_files=None, param_format=None
246
252
def get_dict (self ):
247
253
'''
248
254
Transform the object to a [DICT] to write CWL.
255
+
256
+ :return: dictionnary of the object
257
+ :rtype: DICT
249
258
'''
250
259
dict_out = Parameter .get_dict (self )
251
260
if self .output_binding :
@@ -287,6 +296,9 @@ def __init__(self, load_contents=False, position=None, prefix=None, separate=Fal
287
296
def get_dict (self ):
288
297
'''
289
298
Transform the object to a [DICT] to write CWL.
299
+
300
+ :return: dictionnary of the object
301
+ :rtype: DICT
290
302
'''
291
303
dict_binding = {}
292
304
if self .load_contents :
@@ -329,6 +341,9 @@ def __init__(self, glob=False, load_contents=False, output_eval=None):
329
341
def get_dict (self ):
330
342
'''
331
343
Transform the object to a [DICT] to write CWL.
344
+
345
+ :return: dictionnary of the object
346
+ :rtype: DICT
332
347
'''
333
348
dict_binding = {}
334
349
if self .glob :
0 commit comments