File tree Expand file tree Collapse file tree 4 files changed +87
-1
lines changed Expand file tree Collapse file tree 4 files changed +87
-1
lines changed Original file line number Diff line number Diff line change 1+ % __ ____ ____ _ _ _
2+ % / _)( _ \( _ \ | | / \ | )
3+ % ( (_ )___/ )___/ | |_ / _ \ | \
4+ % \__)(__) (__) |___||_/ \_||__)
5+ %
6+ % Thank you for using the CPP lap pipeline - version 0.0.3.
7+ %
8+ % Current list of contributors includes
9+ % Mohamed Rezk
10+ % Rémi Gau
11+ % Olivier Collignon
12+ % Ane Gurtubay
13+ % Marco Barilari
14+ %
15+ % Please cite using the following DOI:
16+ % https://doi.org/10.5281/zenodo.3554332
17+ %
18+ % For bug report, suggestions for improvements or contributions see our github repo:
19+ % https://github.com/cpp-lln-lab/CPP_BIDS_SPM_pipeline
20+
121clear
222clc
323
Original file line number Diff line number Diff line change 11function opt = getOption()
2+ % __ ____ ____ _ _ _
3+ % / _)( _ \( _ \ | | / \ | )
4+ % ( (_ )___/ )___/ | |_ / _ \ | \
5+ % \__)(__) (__) |___||_/ \_||__)
6+ %
7+ % Thank you for using the CPP lap pipeline - version 0.0.3.
8+ %
9+ % Current list of contributors includes
10+ % Mohamed Rezk
11+ % Rémi Gau
12+ % Olivier Collignon
13+ % Ane Gurtubay
14+ % Marco Barilari
15+ %
16+ % Please cite using the following DOI:
17+ % https://doi.org/10.5281/zenodo.3554332
18+ %
19+ % For bug report, suggestions for improvements or contributions see our github repo:
20+ % https://github.com/cpp-lln-lab/CPP_BIDS_SPM_pipeline
21+
22+
223% returns a structure that contains the options chosen by the user to run
324% slice timing correction, pre-processing, FFX, RFX.
425
6081% scripts
6182save(' opt.mat' ,' opt' )
6283
63-
6484end
Original file line number Diff line number Diff line change 11function checkDependencies()
22% Checks that that the right dependencies are installed. ALso loads the spm defaults.
33
4+ printCredits()
45
56SPM_main = ' SPM12' ;
67SPM_sub = ' 7487' ;
Original file line number Diff line number Diff line change 1+ function printCredits()
2+
3+ version = ' 0.0.3' ;
4+
5+ contributors = {...
6+ ' Mohamed Rezk' ,...
7+ ' Rémi Gau' , ...
8+ ' Olivier Collignon' ,...
9+ ' Ane Gurtubay' , ...
10+ ' Marco Barilari' };
11+
12+ DOI_URL = ' https://doi.org/10.5281/zenodo.3554332' ;
13+
14+ repoURL = ' https://github.com/cpp-lln-lab/CPP_BIDS_SPM_pipeline' ;
15+
16+ disp( ' ____________________________________________________________________________________________' );
17+ disp( ' ____________________________________________________________________________________________' );
18+ disp( ' ' );
19+ disp( ' __ ____ ____ _ _ _ ' );
20+ disp( ' / _)( _ \( _ \ | | / \ | ) ' );
21+ disp( ' ( (_ )___/ )___/ | |_ / _ \ | \ ' );
22+ disp( ' \__)(__) (__) |___||_/ \_||__)' );
23+ disp( ' ' );
24+
25+ splash = ' Thank you for using the CPP lap pipeline - version %s . ' ;
26+ fprintf(splash , version )
27+ fprintf(' \n\n ' );
28+
29+ fprintf(' Current list of contributors includes\n ' )
30+ for iCont = 1 : numel(contributors )
31+ fprintf(' %s\n ' , contributors{iCont })
32+ end
33+ fprintf(' \b\n\n ' )
34+
35+ fprintf(' Please cite using the following DOI: \n %s\n\n ' , DOI_URL )
36+
37+ fprintf(' For bug report, suggestions for improvements or contributions see our github repo: \n %s\n\n ' , repoURL )
38+
39+
40+ disp( ' ____________________________________________________________________________________________' );
41+ disp( ' ____________________________________________________________________________________________' );
42+
43+ fprintf(' \n\n ' )
44+
45+ end
You can’t perform that action at this time.
0 commit comments