Hi,
the function ToTheGraph_timeShiftmax2 to get a DOT graph has the maximum number of edges hardcoded:
R> TDARACNE:::ToTheGraph_timeShiftmax2
function (network, name)
{
row <- dim(network)[1]
col <- dim(network)[2]
title2 <- name
graph <- array(0, dim = c(1000, 4))
w <- 1
...
}
is there any reason for this limitation, or should actually be automatically calculated from the number of edges of the network? (or at least do a check before hand whether the network is too big to be exported, and prevent the code from stopping with a nasty error)
cheers,
Sergi