-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Add recon workflow for hbcd beta (#735)
add recon workflow for hbcd beta
- Loading branch information
1 parent
715a8cc
commit 8fd846e
Showing
2 changed files
with
133 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
{ | ||
"name": "hbcd_postproc_beta", | ||
"space" : "T1w", | ||
"atlases": [ ], | ||
"anatomical": [ ], | ||
"nodes": [ | ||
{ | ||
"name": "dipy_dki", | ||
"software": "Dipy", | ||
"action": "DKI_reconstruction", | ||
"input": "qsiprep", | ||
"qsirecon_suffix": "DIPYDKI", | ||
"parameters": { | ||
"write_mif": false, | ||
"write_fibgz": false | ||
} | ||
}, | ||
{ | ||
"name": "tortoise_dtmapmri", | ||
"software": "TORTOISE", | ||
"action": "estimate", | ||
"qsirecon_suffix": "TORTOISE_model-MAPMRI", | ||
"input": "qsiprep", | ||
"parameters": { | ||
"estimate_tensor_separately": true, | ||
"big_delta": null, | ||
"small_delta": null, | ||
"estimate_tensor": { | ||
"bval_cutoff": 1200, | ||
"write_cs": true}, | ||
"estimate_mapmri": { | ||
"map_order": 4} | ||
} | ||
}, | ||
{ | ||
"name": "tortoise_fullshell_tensor", | ||
"software": "TORTOISE", | ||
"action": "estimate", | ||
"qsirecon_suffix": "TORTOISE_model-tensor", | ||
"input": "qsiprep", | ||
"parameters": { | ||
"estimate_tensor_separately": true, | ||
"big_delta": null, | ||
"small_delta": null, | ||
"estimate_tensor": { | ||
"bval_cutoff": 4000, | ||
"write_cs": true} | ||
} | ||
}, | ||
{ | ||
"name": "fit_noddi", | ||
"action": "fit_noddi", | ||
"software": "AMICO", | ||
"input": "qsiprep", | ||
"qsirecon_suffix": "NODDI", | ||
"parameters": { | ||
"isExvivo": false, | ||
"dPar": 1.7E-3, | ||
"dIso": 3.0E-3 | ||
} | ||
}, | ||
{ | ||
"name": "dsistudio_gqi", | ||
"software": "DSI Studio", | ||
"action": "reconstruction", | ||
"input": "qsiprep", | ||
"qsirecon_suffix": "DSIStudio", | ||
"parameters": { | ||
"method": "gqi" | ||
} | ||
}, | ||
{ | ||
"name": "autotrackgqi", | ||
"software": "DSI Studio", | ||
"action": "autotrack", | ||
"input": "dsistudio_gqi", | ||
"qsirecon_suffix": "DSIStudio", | ||
"parameters": { | ||
"track_id": "Fasciculus,Cingulum,Aslant,Corticos,Thalamic_R,Reticular,Optic,Fornix,Corpus", | ||
"tolerance": "22,26,30", | ||
"track_voxel_ratio": 2.0, | ||
"yield_rate": 0.000001 | ||
} | ||
}, | ||
{ | ||
"name": "gqi_scalars", | ||
"software": "DSI Studio", | ||
"action": "export", | ||
"input": "dsistudio_gqi", | ||
"qsirecon_suffix": "DSIStudio" | ||
}, | ||
{ | ||
"name": "bundle_means", | ||
"software": "qsiprep", | ||
"action": "bundle_map", | ||
"input": "autotrackgqi", | ||
"scalars_from": [ | ||
"gqi_scalars", | ||
"dipy_dki", | ||
"fit_noddi", | ||
"tortoise_fullshell_tensor", | ||
"tortoise_dtmapmri" | ||
] | ||
}, | ||
{ | ||
"name": "template_map", | ||
"software": "qsiprep", | ||
"action": "template_map", | ||
"input": "qsiprep", | ||
"scalars_from": [ | ||
"gqi_scalars", | ||
"dipy_dki", | ||
"fit_noddi", | ||
"tortoise_fullshell_tensor", | ||
"tortoise_dtmapmri" | ||
], | ||
"parameters": { | ||
"interpolation": "NearestNeighbor" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters