Note
In early development and is not yet ready for production use.
This repository contains a collection of Boutiques descriptors for all command line brain imaging tools called by C-PAC. The descriptors are stored in the descriptors
directory and are organized by the brain imaging software framework they belong to.
- Greg's Intro to Boutiques slideshow
- Flo's Boutiques Tutorial slideshow
- Boutiques documentation
- Boutiques schema
- FSL help pages
- FSL wiki
- Freesurfer wiki
- AFNI documentation
Add the following entry to your ./.vscode/settings.json
file to enable in-editor JSON schema validation for this project for VSCode.
{
"json.schemas": [
{
"fileMatch": [
"descriptors/**/*.json"
],
"url": "./schemas/descriptor.schema.json"
}
]
}