Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Move pipeline import earlier in configuration process #1437

Merged
merged 1 commit into from
Feb 15, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions dev/docker_data/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ def load_cpac_data_config(data_config_file, participant_label,
c.update(overrides)

if args.anat_only:
# TODO
# c.update({'functional_preproc': 'run': Off})?
c.update({"runFunctional": [0]})
c.update({'FROM': 'anat-only'})

c = Configuration(c)

# get the aws_input_credentials, if any are specified
if args.aws_input_creds:
Expand Down Expand Up @@ -524,8 +524,6 @@ def load_cpac_data_config(data_config_file, participant_label,
c['pipeline_setup']['system_config']['max_cores_per_participant'], int(c['pipeline_setup']['system_config']['num_ants_threads'])
)

c = Configuration(c)

c['disable_log'] = args.disable_file_logging

if args.save_working_dir is not False:
Expand Down