We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ccdb8c commit 599f243Copy full SHA for 599f243
1 file changed
tests/full_pipeline/test_metrics.py
@@ -8,6 +8,7 @@
8
import nibabel as nib
9
10
from rbc.workflows import metrics_pipeline
11
+from rbc_resources import get_atlas
12
13
if TYPE_CHECKING:
14
from full_pipeline.conftest import PipelineData
@@ -35,6 +36,7 @@ def test_single_session_metrics(
35
36
cleaned_bold=pipeline_data.func.cleaned_bold[regressor],
37
template_brain_mask=pipeline_data.template_brain_mask,
38
tr=tr,
39
+ atlas_files={"schaefer_200": get_atlas("schaefer_200")},
40
)
41
for output in result:
42
paths = output.values() if isinstance(output, dict) else [output]
0 commit comments