We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77bbe24 + 6ed5970 commit 10b2585Copy full SHA for 10b2585
run.py
@@ -41,13 +41,16 @@ def run(command, env={}):
41
'provided all subjects should be analyzed. Multiple '
42
'participants can be specified with a space separated list.',
43
nargs="+")
44
+parser.add_argument('--skip_bids_validator', help='Whether or not to perform BIDS dataset validation',
45
+ action='store_true')
46
parser.add_argument('-v', '--version', action='version',
47
version='BIDS-App example version {}'.format(__version__))
48
49
50
args = parser.parse_args()
51
-run('bids-validator %s'%args.bids_dir)
52
+if not args.skip_bids_validator:
53
+ run('bids-validator %s'%args.bids_dir)
54
55
subjects_to_analyze = []
56
# only for a subset of subjects
0 commit comments