@@ -1241,19 +1241,20 @@ def init_bold_grayords_wf(
1241
1241
Either ``"91k"`` or ``"170k"``, representing the total *grayordinates*.
1242
1242
mem_gb : :obj:`float`
1243
1243
Size of BOLD file in GB
1244
+ repetition_time : :obj:`float`
1245
+ Repetition time in seconds
1244
1246
name : :obj:`str`
1245
1247
Unique name for the subworkflow (default: ``"bold_grayords_wf"``)
1246
1248
1247
1249
Inputs
1248
1250
------
1251
+ bold_fsLR : :obj:`str`
1252
+ List of paths to BOLD series resampled as functional GIFTI files in fsLR space
1249
1253
bold_std : :obj:`str`
1250
1254
List of BOLD conversions to standard spaces.
1251
1255
spatial_reference : :obj:`str`
1252
1256
List of unique identifiers corresponding to the BOLD standard-conversions.
1253
- surf_files : :obj:`str`
1254
- List of BOLD files resampled on the fsaverage (ico7) surfaces.
1255
- surf_refs :
1256
- List of unique identifiers corresponding to the BOLD surface-conversions.
1257
+
1257
1258
1258
1259
Outputs
1259
1260
-------
@@ -1268,16 +1269,18 @@ def init_bold_grayords_wf(
1268
1269
from niworkflows .interfaces .utility import KeySelect
1269
1270
1270
1271
workflow = Workflow (name = name )
1272
+
1273
+ mni_density = "2" if grayord_density == "91k" else "1"
1274
+
1271
1275
workflow .__desc__ = """\
1272
1276
*Grayordinates* files [@hcppipelines] containing {density} samples were also
1273
- generated using the highest-resolution ``fsaverage`` as intermediate standardized
1274
- surface space.
1277
+ generated with surface data transformed directly to fsLR space and subcortical
1278
+ data transformed to {mni_density} mm resolution MNI152NLin6Asym space.
1275
1279
""" .format (
1276
- density = grayord_density
1280
+ density = grayord_density ,
1281
+ mni_density = mni_density
1277
1282
)
1278
1283
1279
- mni_density = "2" if grayord_density == "91k" else "1"
1280
-
1281
1284
inputnode = pe .Node (
1282
1285
niu .IdentityInterface (
1283
1286
fields = [
0 commit comments