You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This dataset contains a curated collection of PET imaging data from multiple OpenNeuro datasets, compiled for testing and development of the PETPrep software pipeline. The data has been selected to provide a diverse range of PET imaging scenarios for comprehensive software testing.
19
+
20
+
## Dataset Information
21
+
22
+
- **Dataset Type**: Raw BIDS data
23
+
- **BIDS Version**: 1.7.0
24
+
- **License**: CC0 (Public Domain)
25
+
- **Compiled for**: PETPrep software testing and development
26
+
27
+
## Included Datasets
28
+
29
+
This collection includes data from the following OpenNeuro datasets:
30
+
31
+
{dataset_list}
32
+
## Data Structure
33
+
34
+
The dataset follows the Brain Imaging Data Structure (BIDS) specification:
35
+
36
+
```
37
+
├── dataset_description.json
38
+
├── participants.tsv
39
+
├── sub-*/ # Subject directories
40
+
│ ├── anat/ # Anatomical data
41
+
│ │ └── sub-*_T1w.nii.gz
42
+
│ └── pet/ # PET data
43
+
│ ├── sub-*_pet.nii.gz
44
+
│ ├── sub-*_pet.json
45
+
│ └── sub-*_blood.tsv # Blood data (if available)
46
+
```
47
+
48
+
## Usage
49
+
50
+
This dataset is intended for:
51
+
- PETPrep software testing and validation
52
+
- Development of PET preprocessing pipelines
53
+
- Educational purposes in PET data analysis
54
+
55
+
## Citation
56
+
57
+
If you use this test dataset, please cite:
58
+
- The original OpenNeuro datasets
59
+
- The PETPrep software: [PETPrep GitHub Repository](https://github.com/nipreps/petprep)
60
+
61
+
## Acknowledgments
62
+
63
+
- OpenNeuro for hosting the original datasets
64
+
- The BIDS community for data organization standards
"description": "[18F]SF51, a Novel 18F-labeled PET Radioligand for Translocator Protein 18kDa (TSPO) in Brain, Works Well in Monkeys but Fails in Humans",
123
+
"subject_ids": ["sf02"]
124
+
},
125
+
"ds004868": {
126
+
"version": "1.0.4",
127
+
"description": "[11C]PS13 demonstrates pharmacologically selective and substantial binding to cyclooxygenase-1 (COX-1) in the human brain",
parser=argparse.ArgumentParser(prog="PETPrepTestDataCollector", description="Collects PET datasets from OpenNeuro.org and combines them into a single BIDS dataset using datalad and pandas",)
226
+
parser.add_argument("--working-directory", "-w", type=str, default=TemporaryDirectory(), help="Working directory for downloading and combining datasets, defaults to a temporary directory.")
227
+
parser.add_argument("--output-directory", "-o", type=str, default=os.getcwd(), help=f"Output directory of combined dataset, defaults where this script is called from, presently {os.getcwd}")
0 commit comments