forked from andersonwinkler/PALM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
palm_quicksave.m
164 lines (147 loc) · 5.37 KB
/
palm_quicksave.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
function P = palm_quicksave(X,flg,opts,plm,y,m,c,filename)
% An intermediate function to be used many times in
% palm_saveall.m. It chooses an adequate mask, places back
% the data into the points defined by this mask, and save.
%
% Usage:
% P = palm_quicksave(X,flg,opts,plm,y,m,c,filename)
%
% Inputs:
% X : Data to be saved.
% flg : A flag that can be:
% 0: meaning that X is to be just saved.
% 1: meaning that X is a P-value, so it may
% be converted to 1-P or to -log(P) if
% this was specified by the user.
% 2: meaning that X is a statistic (G or Z)
% that needs to be converted to a P-value,
% and then, perhaps, to 1-p or -log(P).
% opts,plm : Structs with options and general data.
% y : Index for the current data in plm.Yset.
% m : Index for the current design in plm.Mset.
% c : Index for the current contrast in plm.Cset.
% filename : File to be created.
%
% Outputs:
% P : True P-value (not 1-p or -log(p)).
%
% _____________________________________
% Anderson M. Winkler
% FMRIB / University of Oxford
% Aug/2013
% http://brainder.org
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% PALM -- Permutation Analysis of Linear Models
% Copyright (C) 2015 Anderson M. Winkler
%
% This program 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
% any later version.
%
% This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
% - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
% Save only if X isn't empty
if ~ isempty(X)
% Just some verbosity, if asked
if opts.showprogress
fprintf('\t Saving file: %s\n',filename);
end
% Modify X accodring to the flag
if flg == 1
% Deal with complex values in the gamma approximation
if opts.accel.gamma
if ~ isreal(X)
iidx = imag(X(:)) ~= 0;
nimag = sum(iidx);
warning([...
'Complex values found with the gamma approximation in %d out of %d tests. \n' ...
' These will be saved as non-significant (p-value = 1).\n' ...
' To solve this problem, increase the number of permutations.\n'...
' Affected file: %s'],...
nimag,numel(iidx),filename);
X(iidx) = 1;
X(iidx) = real(X(iidx));
end
end
% Convert P to 1-P
if opts.savecdf
X = 1 - X;
end
elseif flg == 2
% Convert a statistic to a P-value
X0 = X;
if opts.savecdf
% CDF (1-P)
X = palm_gcdf(X0,plm.rC{m}(c),plm.df2{y}{m}{c});
% Even saving the CDF, the true p-vals may be needed
if nargout > 0
P = palm_gpval(X0,plm.rC{m}(c),plm.df2{y}{m}{c});
end
% Double the p-vals for parametric 2-tailed
if opts.twotail && plm.rC{m}(c) <= 1
upp = X <= .5;
X( upp) = 2*X(upp);
X(~upp) = 2*palm_gpval(X0(~upp),plm.rC{m}(c),plm.df2{y}{m}{c});
end
else
% Just P
X = palm_gpval(X0,plm.rC{m}(c),plm.df2{y}{m}{c});
if nargout > 0
P = X;
end
% Double the p-vals for parametric 2-tailed
if opts.twotail && plm.rC{m}(c) <= 1
upp = X <= .5;
X( upp) = 2*X(upp);
X(~upp) = 2*palm_gcdf(X0(~upp),plm.rC{m}(c),plm.df2{y}{m}{c});
end
end
end
% Convert to logarithm
if opts.savelogp && any(flg == [1 2])
X = -log10(X);
end
% Prepare struct to save
if opts.inputmv
S.filename = filename;
S.readwith = 'load';
S.data = X;
else
% Choose an appropriate mask struct.
if isempty(y), y = 1; end
if opts.npcmod || opts.MV || opts.CCA || opts.PLS || opts.forcemaskinter
S = plm.maskinter;
else
if plm.nmasks == 1
S = plm.masks{1};
else
S = plm.masks{y};
end
end
% Inject the data.
mask = S.data;
S.data = double(S.data);
S.data(mask) = X;
if strcmpi(S.readwith,'dpxread') && (...
strcmpi(plm.Ykindstr{y},'_dpv') || ...
strcmpi(plm.Ykindstr{y},'_dpf') || ...
strcmpi(plm.Ykindstr{y},'_dpx') )
S.filename = sprintf('%s.%s',filename,plm.Ykindstr{y}(2:end));
else
S.filename = filename;
end
end
% Transpose back
if opts.transposedata && max(size(S.data)) == numel(S.data)
S.data = S.data';
end
% Save
palm_miscwrite(S,true);
end