-
Notifications
You must be signed in to change notification settings - Fork 6
/
start_GraphVar.m
55 lines (48 loc) · 2.85 KB
/
start_GraphVar.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
% This file is part of GraphVar.
%
% Copyright (C) 2017
%
% GraphVar is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% GraphVar is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with GraphVar. If not, see <http://www.gnu.org/licenses/>.
global root_path;
global source_path
global workspace_path;
global data_path;
global brain_path;
global Brain_Atlas;
global ROI_path;
fileName = mfilename;
root_path = mfilename('fullpath');
root_path = root_path(1:end-length(fileName));
cd(root_path);
source_path = [root_path 'src' filesep];
addpath(source_path);
addpath(root_path);
addpath(genpath(source_path))
workspace_path = [root_path 'workspaces'];
fprintf('Welcome to GraphVar\n')
fprintf('Release= 2.00 \n')
fprintf('GraphVar 1.00 was developed by Johann Kruschwitz*, David List*, L. Waller, and Mikael Rubinov; *equal contribution\n')
fprintf('GraphVar 2.00 was developed by Anastasia Brovkin*, L. Waller*, L. Dorfschmidt*, D. Bdzok* and Johann Kruschwitz*; *equal contribution\n')
fprintf('Division of Mind and Brain Research, Department for Psychiatry, Charite Berlin, Germany\n')
fprintf('Department for General Psychology, Technische Universitaet Dresden TUD, Germany\n')
fprintf('Brain Mapping Unit, Department of Psychiatry, University of Cambridge, Cambridge, United Kingdom\n')
fprintf('Funding for this project was provided by the German Research Foundation (DFG) grant SFB940/2 2016\n')
fprintf('-----------------------------------------------------------\n')
fprintf('Citing Information:\n')
fprintf('If you think GraphVar is useful for your work, citing it in your paper would be greatly appreciated.\n')
fprintf('Please always cite also the first GraphVar publication. i.e., Kruschwitz et al (2015) and Brovkin et al (2018).\n')
fprintf('Reference: Kruschwitz JD, List D, Waller L, Rubinov M, Walter H, GraphVar: A user-friendly toolbox for comprehensive graph analyses of functional brain connectivity, Journal of Neuroscience Methods (2015), http://dx.doi.org/10.1016/j.jneumeth.2015.02.021 \n')
fprintf('Reference: Brovkin A, Waller L, Dorfschmidt L, Bzdok D, Walter H, Kruschwitz J, GraphVar 2.0: A user-friendly toolbox for machine learning on functional brain connectivity measures, Journal: (n.n.) pre-print (Arxiv) https://arxiv.org/abs/1803.00082 \n')
Welcome();