-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inheritance principle: Reformats for CI
- Loading branch information
Showing
1 changed file
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -589,7 +589,7 @@ Corollaries: | |
|
||
1. Where the same key is present in multiple applicable metadata files, the final | ||
value associated with that key will be that of the file latest in the order in | ||
which that key is defined; i.e. values associated with that key earlier in the | ||
which that key is defined; any values associated with that key earlier in the | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Lestropie
Author
Collaborator
|
||
ordering are overridden | ||
(though it is RECOMMENDED to minimize the extent of such overrides). | ||
|
||
|
@@ -681,37 +681,37 @@ Example 2: Complex inheritance scenario | |
The applicability and order in which each JSON file would be loaded for each data | ||
file is as follows: | ||
|
||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_run-1_bold.nii.gz`: [ | ||
`bold.json`, | ||
`task-ovg_bold.json`, | ||
`sub-01/sub-01_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_task-ovg_bold.json` ] | ||
|
||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_run-2_bold.nii.gz`: [ | ||
`bold.json`, | ||
`task-ovg_bold.json`, | ||
`sub-01/sub-01_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_task-ovg_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_task-ovg_run-2_bold.json` ] | ||
|
||
- `sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.nii.gz`: [ | ||
`bold.json`, | ||
`task-rest_bold.json`, | ||
`sub-01/sub-01_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_bold.json`, | ||
`sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.json` ] | ||
|
||
- `sub-01/ses-02/func/sub-01_ses-02_task-ovg_bold.nii.gz`: [ | ||
`bold.json`, | ||
`task-ovg_bold.json`, | ||
`sub-01/sub-01_bold.json` ] | ||
|
||
- `sub-01/ses-02/func/sub-01_ses-02_task-rest_bold.nii.gz`: [ | ||
`bold.json`, | ||
`task-rest_bold.json`, | ||
`sub-01/sub-01_bold.json` ] | ||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_run-1_bold.nii.gz`: | ||
- `bold.json` | ||
- `task-ovg_bold.json` | ||
- `sub-01/sub-01_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_bold.json` | ||
|
||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_run-2_bold.nii.gz`: | ||
- `bold.json` | ||
- `task-ovg_bold.json` | ||
- `sub-01/sub-01_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_task-ovg_run-2_bold.json` | ||
|
||
- `sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.nii.gz`: | ||
- `bold.json` | ||
- `task-rest_bold.json` | ||
- `sub-01/sub-01_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_bold.json` | ||
- `sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.json` | ||
|
||
- `sub-01/ses-02/func/sub-01_ses-02_task-ovg_bold.nii.gz`: | ||
- `bold.json` | ||
- `task-ovg_bold.json` | ||
- `sub-01/sub-01_bold.json` | ||
|
||
- `sub-01/ses-02/func/sub-01_ses-02_task-rest_bold.nii.gz`: | ||
- `bold.json` | ||
- `task-rest_bold.json` | ||
- `sub-01/sub-01_bold.json` | ||
|
||
Example 3: Violation of inheritance principle | ||
|
||
|
1 comment
on commit d5782c6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
@Lestropie just to confirm. The only change is this one. The additional changes below are formatting, am I correct?