We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0365e83 commit b5bfe4aCopy full SHA for b5bfe4a
1 file changed
src/rbc/workflows/functional.py
@@ -22,7 +22,9 @@ def single_session(in_bold: Path, output_dir: Path, start_tr: int = 2) -> None:
22
output_dir: Parent output directory to save data to.
23
start_tr: Number of initial TRs to remove (default: 2).
24
"""
25
- bids_entities = get_base_entities(in_bold)
+ bids_entities = get_base_entities(
26
+ in_bold, base_entities=["sub", "ses", "task", "run"]
27
+ )
28
bids = partial(niwrap_helper.bids_path, **bids_entities)
29
30
reoriented_bold = reorient(
0 commit comments