Description Usage Arguments Value Author(s) Examples
Genes are sorted into groups with respect to switch time and time point of fold change detection. For each group, results of wild type and knockdown-condition are compared by means of fisher's exact test to show whether the knocked down gene enhances or suppresses the respective gene group.
1 2 | plotSSGS(myresultCombined = resultCombined, mytimes = times,
myanalyzeConditions = analyzeConditions)
|
myresultCombined |
data.frame, output of combineResults |
mytimes |
Numeric vector, Time points of the time-resolved RNA-seq data |
myanalyzeConditions |
character vector, the conditions that were analyzed |
SSGS color plot in ggplot format
Marcus Rosenblatt, marcus.rosenblatt@fdm.uni-freiburg.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | library(ggplot2)
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))
resultCombined <- combineResults(resultSwitch, resultFC)
plotSSGS(myresultCombined = resultCombined,
mytimes = c(2.5,3,3.5,4,4.5,5,5.5,6),
myanalyzeConditions = c("WT", "MZsox"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.