Skip to content
Draft
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ nav:
- BIDS Derivatives: derivatives/introduction.md
- Common data types and metadata: derivatives/common-data-types.md
- Imaging data types: derivatives/imaging.md
- Diffusion MRI: derivatives/diffusion-derivatives.md
- Templates and atlases: derivatives/atlas.md
- Longitudinal and multi-site studies: longitudinal-and-multi-site-studies.md
- Glossary: glossary.md
Expand Down Expand Up @@ -157,6 +158,7 @@ plugins:
"05-derivatives/01-introduction.md": "derivatives/introduction.md"
"05-derivatives/02-common-data-types.md": "derivatives/common-data-types.md"
"05-derivatives/03-imaging.md": "derivatives/imaging.md"
"05-derivatives/03-diffusion.md": "derivatives/diffusion-derivatives.md"
"06-longitudinal-and-multi-site-studies.md": "longitudinal-and-multi-site-studies.md"
"07-extensions.md": "extensions.md"
"99-appendices/14-glossary.md": "glossary.md"
Expand Down
31 changes: 31 additions & 0 deletions src/derivatives/diffusion-derivatives.md
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/
Comment thread
jhlegarreta marked this conversation as resolved.
Outdated
<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
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The 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
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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.
Where [`tract-<label>`](../appendices/entities.md#tract) is the anatomical/structural entity that is being imaged, and
[`track-<label>`](../appendices/entities.md#track) uses as its value one of the items in a controlled vocabulary.


For example:

```Text

AFQ/
Comment thread
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
```
19 changes: 19 additions & 0 deletions src/schema/objects/entities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -526,3 +534,14 @@ tracksys:
may be longer and more human readable.
type: string
format: label
Comment on lines 515 to 536
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since there is already an entity that uses track as part of tracksys to describe motion tracking, should we use a more distinct entity? @ayendiki had suggested trace, which I also like.

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
2 changes: 2 additions & 0 deletions src/schema/rules/entities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
- processing
- hemisphere
- space
- tract
- track
- split
- recording
- chunk
Expand Down
Loading