File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Next release
23
23
* FIX: Output prefix in SPM Normalize with modulation (https://github.com/nipy/nipype/pull/1023)
24
24
* ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025)
25
25
* ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042)
26
- * ENH: Added csvReader() utility
26
+ * ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
27
27
28
28
Release 0.10.0 (October 10, 2014)
29
29
============
Original file line number Diff line number Diff line change @@ -491,20 +491,20 @@ class CSVReader(BaseInterface):
491
491
Examples
492
492
--------
493
493
494
- >>> reader = cv. CSVReader()
495
- >>> reader.inputs.in_file = 'noHeader.csv'
496
- >>> out = reader.run()
494
+ >>> reader = CSVReader() # doctest: +SKIP
495
+ >>> reader.inputs.in_file = 'noHeader.csv' # doctest: +SKIP
496
+ >>> out = reader.run() # doctest: +SKIP
497
497
>>> out.outputs.column_0 == ['foo', 'bar', 'baz'] # doctest: +SKIP
498
498
True
499
499
>>> out.outputs.column_1 == ['hello', 'world', 'goodbye'] # doctest: +SKIP
500
500
True
501
501
>>> out.outputs.column_2 == ['300.1', '5', '0.3'] # doctest: +SKIP
502
502
True
503
503
504
- >>> reader = cv. CSVReader()
505
- >>> reader.inputs.in_file = 'header.csv'
506
- >>> reader.inputs.header = True
507
- >>> out = reader.run()
504
+ >>> reader = CSVReader() # doctest: +SKIP
505
+ >>> reader.inputs.in_file = 'header.csv' # doctest: +SKIP
506
+ >>> reader.inputs.header = True # doctest: +SKIP
507
+ >>> out = reader.run() # doctest: +SKIP
508
508
>>> out.outputs.files == ['foo', 'bar', 'baz'] # doctest: +SKIP
509
509
True
510
510
>>> out.outputs.labels == ['hello', 'world', 'goodbye'] # doctest: +SKIP
You can’t perform that action at this time.
0 commit comments