Skip to content

Commit dd6217e

Browse files
mvdocclaude
andcommitted
Point data submodule to OpenNeuro, add data access docs
- Update data submodule to https://github.com/OpenNeuroDatasets/ds007329.git - Add OpenNeuro dataset URLs and datalad install instructions to README - Add datalad as a runtime dependency Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 954e537 commit dd6217e

4 files changed

Lines changed: 19 additions & 6 deletions

File tree

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "data"]
22
path = data
3-
url = ./data
3+
url = https://github.com/OpenNeuroDatasets/ds007329.git

README.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,24 @@ uv sync
1919

2020
## Data Access
2121

22-
The dataset is managed with [datalad](https://www.datalad.org/) and follows the [BIDS](https://bids.neuroimaging.io/) standard:
22+
The dataset is available on [OpenNeuro](https://openneuro.org/) and follows the [BIDS](https://bids.neuroimaging.io/) standard:
23+
24+
- **Raw data**: [ds007329](https://openneuro.org/datasets/ds007329)
25+
- **fMRIPrep derivatives**: [ds007384](https://openneuro.org/datasets/ds007384)
26+
- **FreeSurfer derivatives**: [ds007378](https://openneuro.org/datasets/ds007378)
27+
28+
To download the data using [datalad](https://www.datalad.org/):
2329

2430
```bash
25-
# Initialize the data submodule
26-
git submodule update --init
27-
cd data && datalad get .
31+
# Install the raw data (included as a git submodule)
32+
datalad install -r .
33+
34+
# Install the derivative datasets
35+
datalad install -s https://github.com/OpenNeuroDatasets/ds007384.git data/derivatives/fmriprep
36+
datalad install -s https://github.com/OpenNeuroDatasets/ds007378.git data/derivatives/freesurfer
37+
38+
# Download specific files as needed
39+
datalad get data/sub-sid000005/
2840
```
2941

3042
## Quality Assurance

data

Submodule data updated from 48f1c9f to 7a8da40

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies = [
3939
"pyyaml>=6.0",
4040
"pybids>=0.16.0",
4141
"pycortex>=1.0.0",
42+
"datalad>=0.19.0",
4243
]
4344

4445
[project.optional-dependencies]

0 commit comments

Comments
 (0)