@@ -286,7 +286,7 @@ def add_results(self, results):
286
286
id = get_id ()
287
287
env_collection = self .g .collection (id )
288
288
env_collection .add_extra_attributes ({pm .PROV ['type' ]:
289
- nipype_ns ['environment ' ],
289
+ nipype_ns ['Environment ' ],
290
290
pm .PROV ['label' ]: "Environment" })
291
291
self .g .used (a0 , id )
292
292
# write environment entities
@@ -309,7 +309,7 @@ def add_results(self, results):
309
309
id = get_id ()
310
310
input_collection = self .g .collection (id )
311
311
input_collection .add_extra_attributes ({pm .PROV ['type' ]:
312
- nipype_ns ['inputs ' ],
312
+ nipype_ns ['Inputs ' ],
313
313
pm .PROV ['label' ]: "Inputs" })
314
314
# write input entities
315
315
for idx , (key , val ) in enumerate (sorted (inputs .items ())):
@@ -326,7 +326,7 @@ def add_results(self, results):
326
326
if not isinstance (outputs , dict ):
327
327
outputs = outputs .get_traitsfree ()
328
328
output_collection .add_extra_attributes ({pm .PROV ['type' ]:
329
- nipype_ns ['outputs ' ],
329
+ nipype_ns ['Outputs ' ],
330
330
pm .PROV ['label' ]:
331
331
"Outputs" })
332
332
self .g .wasGeneratedBy (output_collection , a0 )
@@ -342,7 +342,7 @@ def add_results(self, results):
342
342
id = get_id ()
343
343
runtime_collection = self .g .collection (id )
344
344
runtime_collection .add_extra_attributes ({pm .PROV ['type' ]:
345
- nipype_ns ['runtime ' ],
345
+ nipype_ns ['Runtime ' ],
346
346
pm .PROV ['label' ]:
347
347
"RuntimeInfo" })
348
348
self .g .wasGeneratedBy (runtime_collection , a0 )
0 commit comments