File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 2
2
language : python
3
3
python :
4
4
- 2.7
5
- - 3.4
6
5
- 3.5
7
6
- 3.6
7
+ - 3.7
8
8
9
9
cache :
10
10
- apt
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ def main(argv=None):
130
130
131
131
def get_parser ():
132
132
docstr = ("""Example:
133
- heudiconv -d rawdata/{subject} -o . -f heuristic.py -s s1 s2 s3""" )
133
+ heudiconv -d ' rawdata/{subject}' -o . -f heuristic.py -s s1 s2 s3""" )
134
134
parser = ArgumentParser (description = docstr )
135
135
parser .add_argument ('--version' , action = 'version' , version = __version__ )
136
136
group = parser .add_mutually_exclusive_group ()
@@ -139,7 +139,9 @@ def get_parser():
139
139
'subject id {subject} and session {session}. Tarballs '
140
140
'(can be compressed) are supported in addition to '
141
141
'directory. All matching tarballs for a subject are '
142
- 'extracted and their content processed in a single pass' )
142
+ 'extracted and their content processed in a single '
143
+ 'pass. Note that you might need to surround the value '
144
+ 'with quotes to avoid {...} being considered by shell' )
143
145
group .add_argument ('--files' , nargs = '*' ,
144
146
help = 'Files (tarballs, dicoms) or directories '
145
147
'containing files to process. Cannot be provided if '
Original file line number Diff line number Diff line change 11
11
REQUIRES = [
12
12
'nibabel' ,
13
13
'pydicom' ,
14
- 'nipype>=0.12 .0' ,
14
+ 'nipype>=1.0 .0' ,
15
15
'pathlib' ,
16
16
'dcmstack>=0.7' ,
17
17
]
You can’t perform that action at this time.
0 commit comments