Hello Michael,
First, BIDS is a standard format used in the neuroimaging community. It is well defined with
specifications and is versioned. Clinica offers converters from raw format to BIDS for some public datasets (ex ADNI) and uses BIDS as the input for all its processing pipelines. CAPS is a format that looks alike BIDS but is used for outputs of clinica pipelines that need additional files not defined in BIDS specifications. As such, CAPS is specific to Clinica while BIDS is a common standard. If you want to know more, please refer to this
page in the documentation.
In the case of `t1-freesurfer`, you only need to prepare a BIDS. The CAPS you have to indicate in the command line is where you want your output to be. The pipeline will automatically write it in CAPS format. Indeed, the `dataset_description.json` should look like this :
```
{
"Name": "name identifier for the dataset",
"BIDSVersion": "1.7.0",
"DatasetType": "raw"
}
```
Hope this helps,
Alice