-
Notifications
You must be signed in to change notification settings - Fork 15
Closed
Description
Currently we have:
└── SPM12_CPPL
├── JOBS
├── group
├── sub-pilot001
│ ├── ses-001
│ └── stats
└── sub-pilot002
├── ses-001
└── stats
This makes it hard to export the stats data of all the subjects without taking the preprocessed data as well
What we at least want is:
└── SPM12_CPPL
├── JOBS
├── group
├── stats
│ ├── sub-pilot001
│ └── sub-pilot002
├── sub-pilot001
│ └── ses-001
└── sub-pilot002
└── ses-001
What we ideally want is:
├── SPM12_CPPL - preprocess
│ ├── JOBS
│ ├── sub-pilot001
│ │ └── ses-001
│ └── sub-pilot002
│ └── ses-001
├── SPM12_CPPL - stats
│ ├── JOBS
│ ├── sub-pilot001
│ └── sub-pilot002
└── SPM12_CPPL - group
├── JOBS
├── sub-pilot001
└── sub-pilot002