-
Notifications
You must be signed in to change notification settings - Fork 197
[ENH]: BEP046, diffusion tractography #2333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 4 commits
0e0f759
668b9f6
6aca2cf
56e8fc7
01c6bef
791721c
2568cef
f6b901e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,31 @@ | ||||||||||
| # Diffusion derivatives | ||||||||||
|
|
||||||||||
| ## Diffusion-based tractography | ||||||||||
|
|
||||||||||
| Tractography based on diffusion-weighted MRI data is stored as streamlines in | ||||||||||
| the TRX file format: | ||||||||||
|
|
||||||||||
| ```Text | ||||||||||
| <pipeline_name>/ | ||||||||||
| sub-<label>/ | ||||||||||
| [ses-<label>/] | ||||||||||
| <modality/ | ||||||||||
| <source-entities>[space-<space>]_[tract-<tract name>]_[track-<tracking method>]_tractogram.trx | ||||||||||
| <source-entities>[space-<space>]_[tract-<tract name>]_[track-<tracking method>]_tractogram.json | ||||||||||
| ``` | ||||||||||
|
|
||||||||||
| Where `tract` is the anatomical/structural entity that is being imaged, and | ||||||||||
| `track` uses as its value one of the items in a controlled vocabulary. | ||||||||||
|
Comment on lines
+17
to
+18
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please provide a list of the controlled vocabulary (or a link)? Thanks.
Comment on lines
+17
to
+18
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
|
||||||||||
| For example: | ||||||||||
|
|
||||||||||
| ```Text | ||||||||||
|
|
||||||||||
| AFQ/ | ||||||||||
|
jhlegarreta marked this conversation as resolved.
Outdated
|
||||||||||
| sub–01/ | ||||||||||
| dwi/ | ||||||||||
| sub-01_space-MNI152NLin2009cAsym_tract-wholebrain_track-eudx_tractogram.trx | ||||||||||
| sub-01_space-MNI152NLin2009cAsym_tract-wholebrain_track-eudx_tractogram.json | ||||||||||
| sub-01_space-MNI152NLin2009cAsym_tract-ArcuateFasciculus_hemi-L_track-eudx_tractogram.trx | ||||||||||
| sub-01_space-MNI152NLin2009cAsym_tract-ArcuateFasciculus_hemi-L_track-eudx_tractogram.json | ||||||||||
| ``` | ||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -512,6 +512,14 @@ volume: | |
| `BodyPartDetailsOntology` is OPTIONAL to also include. | ||
| type: string | ||
| format: label | ||
| track: | ||
| name: track | ||
| display_name: Tractography Method | ||
| description: | | ||
| The `track-<label>` entity identifies the tractography method | ||
| employed to reconstruct white matter fiber streamlines. | ||
| type: string | ||
| format: label | ||
| tracksys: | ||
| name: tracksys | ||
| display_name: Tracking System | ||
|
|
@@ -526,3 +534,14 @@ tracksys: | |
| may be longer and more human readable. | ||
| type: string | ||
| format: label | ||
|
Comment on lines
515
to
536
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since there is already an entity that uses |
||
| tract: | ||
| name: tract | ||
| display_name: Anatomical Tract | ||
| description: | | ||
| The `tract-<label>` entity identifies the white matter fiber | ||
| anatomical/structural entity that is imaged through a | ||
| tractogram (for example, `tract-wholebrain` would correspond to a | ||
| whole-brain tractogram, whereas `tract-ArcuateFasciculus` would | ||
| correspond to a tractogram of the arcuate fasciculus). | ||
| type: string | ||
| format: label | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,6 +26,8 @@ | |
| - processing | ||
| - hemisphere | ||
| - space | ||
| - tract | ||
| - track | ||
| - split | ||
| - recording | ||
| - chunk | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.