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
| Name | REQUIRED |[string][]| Name of the dataset. |
20
-
| BIDSVersion | REQUIRED |[string][]| The version of the BIDS standard that was used. |
21
-
| HEDVersion | RECOMMENDED |[string][]| If HED tags are used: The version of the HED schema used to validate HED tags for study. |
22
-
| DatasetLinks | REQUIRED if [BIDS URIs][] are used |[object][] of [uris][]| Used to map a given `<dataset-name>` from a [BIDS URI][] of the form `bids:<dataset-name>:/absolute/path/within/dataset` to a local or remote location. The `<dataset-name>`: `local` is a reserved keyword that MUST NOT be a key in `DatasetLinks`|
23
-
| DatasetType | RECOMMENDED |[string][]| The interpretation of the dataset. MUST be one of `"raw"` or `"derivative"`. For backwards compatibility, the default value is `"raw"`. |
24
-
| License | RECOMMENDED |[string][]| The license for the dataset. The use of license name abbreviations is RECOMMENDED for specifying a license (see [Appendix II](./99-appendices/02-licenses.md)). The corresponding full license text MAY be specified in an additional `LICENSE` file. |
25
-
| Authors | OPTIONAL |[array][] of [strings][]| List of individuals who contributed to the creation/curation of the dataset. |
26
-
| Acknowledgements | OPTIONAL |[string][]| Text acknowledging contributions of individuals or institutions beyond those listed in Authors or Funding. |
27
-
| HowToAcknowledge | OPTIONAL |[string][]| Text containing instructions on how researchers using this dataset should acknowledge the original authors. This field can also be used to define a publication that should be cited in publications that use the dataset. |
28
-
| Funding | OPTIONAL |[array][] of [strings][]| List of sources of funding (grant numbers). |
29
-
| EthicsApprovals | OPTIONAL |[array][] of [strings][]| List of ethics committee approvals of the research protocols and/or protocol identifiers. |
30
-
| ReferencesAndLinks | OPTIONAL |[array][] of [strings][]| List of references to publications that contain information on the dataset. A reference may be textual or a [URI][uri]. |
31
-
| DatasetDOI | OPTIONAL |[string][]| The Digital Object Identifier of the dataset (not the corresponding paper). DOIs SHOULD be expressed as a valid [URI][uri]; bare DOIs such as `10.0.2.3/dfjj.10` are [DEPRECATED][deprecated]. |
17
+
{{ MACROS___make_metadata_table(
18
+
{
19
+
"Name": "REQUIRED",
20
+
"BIDSVersion": "REQUIRED",
21
+
"HEDVersion": "RECOMMENDED",
22
+
"DatasetLinks": "REQUIRED if [BIDS URIs][] are used",
23
+
"DatasetType": "RECOMMENDED",
24
+
"License": "RECOMMENDED",
25
+
"Authors": "OPTIONAL",
26
+
"Acknowledgements": "OPTIONAL",
27
+
"HowToAcknowledge": "OPTIONAL",
28
+
"Funding": "OPTIONAL",
29
+
"EthicsApprovals": "OPTIONAL",
30
+
"ReferencesAndLinks": "OPTIONAL",
31
+
"DatasetDOI": "OPTIONAL",
32
+
}
33
+
) }}
32
34
33
35
Example:
34
36
@@ -70,10 +72,12 @@ In addition to the keys for raw BIDS datasets,
70
72
derived BIDS datasets include the following REQUIRED and RECOMMENDED
| GeneratedBy | REQUIRED |[array][] of [objects][]| Used to specify provenance of the derived dataset. See table below for contents of each object. |
76
-
| SourceDatasets | RECOMMENDED |[array][] of [objects][]| Used to specify the locations and relevant attributes of all source datasets. Valid keys in each object include `URL`, `DOI` (see [URI][uri]), and `Version` with [string][] values. |
75
+
{{ MACROS___make_metadata_table(
76
+
{
77
+
"GeneratedBy": "REQUIRED",
78
+
"SourceDatasets": "RECOMMENDED",
79
+
}
80
+
) }}
77
81
78
82
Each object in the `GeneratedBy` list includes the following REQUIRED, RECOMMENDED
79
83
and OPTIONAL keys:
@@ -252,13 +256,80 @@ to date of birth.
252
256
}
253
257
```
254
258
259
+
## Samples file
260
+
261
+
Template:
262
+
263
+
```Text
264
+
samples.tsv
265
+
samples.json
266
+
```
267
+
268
+
The purpose of this file is to describe properties of samples, indicated by the `sample` entity.
269
+
This file is REQUIRED if `sample-<label>` is present in any file name within the dataset.
270
+
If this file exists, it MUST contain the three following columns:
271
+
272
+
-`sample_id`: MUST consist of `sample-<label>` values identifying one row
273
+
for each sample
274
+
275
+
-`participant_id`: MUST consist of `sub-<label>`
276
+
277
+
-`sample_type`: MUST consist of sample type values, either `cell line`, `in vitro differentiated cells`,
0 commit comments