Skip to content

Commit

Permalink
Merge pull request #2513 from effigies/fix/metadata_error
Browse files Browse the repository at this point in the history
FIX: Permit missing TR to show PyBIDS error at workflow construction time
  • Loading branch information
effigies authored Aug 23, 2021
2 parents d47f0b3 + 2ce2903 commit 884a7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmriprep/workflows/bold/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def init_func_preproc_wf(bold_file):
registration_init=config.workflow.bold2t1w_init,
pe_direction=metadata.get("PhaseEncodingDirection"),
echo_idx=echo_idxs,
tr=metadata.get("RepetitionTime")),
tr=metadata["RepetitionTime"]),
name='summary', mem_gb=config.DEFAULT_MEMORY_MIN_GB, run_without_submitting=True)
summary.inputs.dummy_scans = config.workflow.dummy_scans

Expand Down

0 comments on commit 884a7fb

Please sign in to comment.