Skip to content

Commit

Permalink
Update cis_proc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Sep 15, 2018
1 parent 0b83f3c commit 8adef53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cis_proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def main(argv=None):
with open(args.config, 'r') as fo:
config_options = json.load(fo)

bidsifier_file = op.join('/home/data/nbc/singularity-images/',
bidsifier_file = op.join('/home/data/cis/singularity-images/',
config_options['bidsifier'])
mriqc_file = op.join('/home/data/nbc/singularity-images/',
mriqc_file = op.join('/home/data/cis/singularity-images/',
config_options['mriqc'])
mriqc_version = op.basename(mriqc_file).split('-')[0].split('_')[-1]

Expand All @@ -107,7 +107,7 @@ def main(argv=None):
# Additional checks and copying for heuristics file
heuristics_file = config_options['heuristics']
if not heuristics_file.startswith('/'):
heuristics_file = op.join('/home/data/nbc/cis_dataqc/cis-processing',
heuristics_file = op.join('/home/data/cis/cis-processing',
heuristics_file)

if not op.isfile(heuristics_file):
Expand Down

0 comments on commit 8adef53

Please sign in to comment.