-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] add model selection to CLI (#1121)
* update submod * [DATALAD] Recorded changes * [DATALAD] Recorded changes * minor work on cli * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix some tests * more fixes * add folders * start implementing bms * fix system test * loop over models * rm models * generate models * update bids matlab * Apply suggestions from code review * fix bug * fix test * refacrtor * refactor * add basic error handling * fix test * fix and doc * fix * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * move space to each action cli * add use_dummy_regressor arg * [DATALAD] Recorded changes * move space to each action cli * [DATALAD] Recorded changes * update fields name, fix failing tests, add arg displaying function * refactor CI * FCI * smooth bms data * use the proper task * use dummy regressor argument * [DATALAD] Recorded changes * use proper argument * fix passing or use fummy argument --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0d1ecae
commit b7ebdc9
Showing
75 changed files
with
1,038 additions
and
373 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
% | ||
% (C) Copyright 2023 bidspm developers | ||
|
||
root_dir = getenv('GITHUB_WORKSPACE'); | ||
|
||
fprintf('\nroot dir is %s\n', root_dir); | ||
|
||
addpath(fullfile(root_dir, 'spm12')); | ||
|
||
cd(fullfile(root_dir, 'demos', 'bayes')); | ||
|
||
run ds000114_run; |
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: clean data data_ds000001 | ||
|
||
data_ds000114: | ||
mkdir -p inputs | ||
cd inputs && datalad install ///openneuro/ds000114 | ||
cd inputs && datalad install ///openneuro-derivatives/ds000114-fmriprep | ||
cd inputs/ds000114-fmriprep && datalad get sub-*/anat/*MNI152NLin2009cAsym*desc-preproc*.nii.gz -J 12 | ||
cd inputs/ds000114-fmriprep && datalad get sub-*/ses-*/func/*tsv -J 12 | ||
cd inputs/ds000114-fmriprep && datalad get sub-*/ses-*/func/*json -J 12 | ||
cd inputs/ds000114-fmriprep && datalad get sub-*/ses-*/func/*overtverbgeneration*MNI152NLin2009cAsym*_mask.nii.gz -J 12 | ||
cd inputs/ds000114-fmriprep && datalad get sub-*/ses-*/func/*overtverbgeneration*MNI152NLin2009cAsym*desc-preproc*bold.nii.gz -J 12 |
Oops, something went wrong.