Description Usage Arguments Value Author(s) Examples
Results of switch and fold change analysis are collected in one data.frame
1 2 | 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
1 2 3 4 5 6 7 8 9 10 11 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.