Improvement of Network Deconvolution algorithm through non-linear attenuation
Authors: Nooshin Omranian, Robert Sehlke, Bernd Mueller-Roeber and and Zoran Nikoloski
Currently under review at: Plos ONE
Matlab codes for Gene regulatory network inference methods used in the paper:
%network deconvolution
for i = 1:size(D,1)
D(i,i) = (D(i,i))/(m+(D(i,i)^(1/τ)));
end
mat_new1 = U*D*inv(U);