We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b2c106 commit 6ed5970Copy full SHA for 6ed5970
run.py
@@ -41,15 +41,15 @@ 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('--validate', help='Whether or not to perform BIDS dataset validation',
+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
52
-if args.validate:
+if not args.skip_bids_validator:
53
run('bids-validator %s'%args.bids_dir)
54
55
subjects_to_analyze = []
0 commit comments