combineResults {RNAsense} | R Documentation |
Results of switch and fold change analysis are collected in one data.frame
combineResults(myresultSwitch = resultSwitch, myresultFC = resultFC, nrcores = 1)
myresultSwitch |
data.frame, output of getSwitch |
myresultFC |
data.frame, output of getFC |
nrcores |
Numeric, Number of cores for parallelization, default 1 for no parallelization |
Data.frame containing information on switch and fold change detection for each gene
Marcus Rosenblatt, marcus.rosenblatt@fdm.uni-freiburg.de
data(MZsox) mydata <- MZsox[seq(1,nrow(MZsox), by=10),] resultFC <- getFC(dataset = mydata, myanalyzeConditions = c("WT", "MZsox"), cores = 1, mytimes = c(2.5,3,3.5,4,4.5,5,5.5,6)) resultSwitch <- getSwitch(dataset = mydata, experimentStepDetection = "WT", cores = 1, mytimes = c(2.5,3,3.5,4,4.5,5,5.5,6)) combineResults(resultSwitch, resultFC)