SINBA.saveRData
SINBA.saveRData.RdSINBA.saveRData is a function to save complicated list object generated by certain steps of SINBA pipeline (e.g. load network files, 'pre-load', load expression files, 'exp-load', calculate driver pairs activity as 'combo-AC', predict drug pairs table 'ms-tab').This function is not essential, but it is highly suggested for easier pipeline step checkout and reference.
Assigning the step name to save the RData for easier reference.
Calling SINBA.loadRData to load the corresponding step RData, users can avoid repeating the former steps.
Examples
if (FALSE) { # \dontrun{
SINBA.par <- list()
SINBA.par$out.dir.DATA <- system.file('demo1','/DATA/',package = "SINBA")
SINBA.loadRData(SINBA.par=SINBA.par,step='pre-load')
SINBA.saveRData(SINBA.par=SINBA.par,step='pre-load')
} # }