File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,11 @@ jobs:
184184 datalad update -r --merge -d hcph-pilot_fieldmaps/
185185 datalad get -r -J 2 -d hcph-pilot_fieldmaps/ hcph-pilot_fieldmaps/*
186186
187+ # ds005250
188+ datalad install -r https://gin.g-node.org/tsalo/ds005250-sdcflows.git
189+ datalad update -r --merge -d ds005250-sdcflows/
190+ datalad get -r -J 2 -d ds005250-sdcflows/ ds005250-sdcflows/sub-04/ses-2/
191+
187192 - name : Set FreeSurfer variables
188193 run : |
189194 echo "FREESURFER_HOME=$HOME/.cache/freesurfer" >> $GITHUB_ENV
Original file line number Diff line number Diff line change @@ -321,6 +321,15 @@ def find_estimators(
321321 FieldmapEstimation(sources=<2 files>, method=<EstimatorType.ANAT: 5>,
322322 bids_id='auto_...')]
323323
324+ >>> find_estimators(
325+ ... layout=layouts['ds005250-sdcflows'],
326+ ... subject='04',
327+ ... fmapless=False,
328+ ... force_fmapless=False,
329+ ... bids_filters={'session': '2'},
330+ ... ) # doctest: +ELLIPSIS
331+ [FieldmapEstimation(sources=<10 files>, method=<EstimatorType.MEDIC: 6>,
332+ bids_id='auto_...')]
324333 """
325334 from .misc import create_logger
326335 from bids .layout import Query
Original file line number Diff line number Diff line change @@ -70,11 +70,17 @@ def init_medic_wf(name="medic_wf"):
7070 -----
7171 This workflow performs minimal preparation before running the MEDIC algorithm,
7272 as implemented in ``vandandrew/warpkit``.
73+
74+ Any downstream processing piplines that use this workflow should include
75+ the following references in their boilerplate BibTeX file:
76+
77+ - medic: https://doi.org/10.1101/2023.11.28.568744
7378 """
7479 workflow = Workflow (name = name )
7580
7681 workflow .__desc__ = """\
77- A dynamic fieldmap was estimated from multi-echo EPI data using the MEDIC algorithm (@medic).
82+ Volume-wise *B<sub>0</sub>* nonuniformity maps (or *fieldmaps*) were estimated from
83+ complex-valued, multi-echo EPI data using the MEDIC algorithm (@medic).
7884"""
7985
8086 inputnode = pe .Node (niu .IdentityInterface (fields = INPUT_FIELDS ), name = "inputnode" )
You can’t perform that action at this time.
0 commit comments