Nothing
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
suppressMessages(library(ADAM))
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
data("ExpressionAedes")
head(ExpressionAedes)
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
Comparison <- c("control1,experiment1","control2,experiment2")
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
Minimum <- 3
Maximum <- 20
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
SeedBootstrap <- 1049
StepsBootstrap <- 1000
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
CutoffValue <- 0.05
MethodCorrection <- "fdr"
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
data("KeggPathwaysAedes")
head(KeggPathwaysAedes)
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
Domain <- "own"
Nomenclature <- "geneStableID"
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
Wilcoxon <- TRUE
Fisher <- TRUE
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
ResultAnalysis <- suppressMessages(GFAGAnalysis(ComparisonID = Comparison,
ExpressionData = ExpressionAedes,
MinGene = Minimum,
MaxGene = Maximum,
SeedNumber = SeedBootstrap,
BootstrapNumber = StepsBootstrap,
PCorrection = CutoffValue,
DBSpecies = KeggPathwaysAedes,
PCorrectionMethod = MethodCorrection,
WilcoxonTest = Wilcoxon,
FisherTest = Fisher,
AnalysisDomain = Domain,
GeneIdentifier = Nomenclature))
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
head(ResultAnalysis[[1]])
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
DT::datatable(as.data.frame(ResultAnalysis[[2]][1]), width = 800,
options = list(scrollX = TRUE))
DT::datatable(as.data.frame(ResultAnalysis[[2]][2]), width = 800,
options = list(scrollX = TRUE))
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
suppressMessages(library(ADAM))
data("ExpressionAedes")
data("KeggPathwaysAedes")
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
Comparison <- c("control1,experiment1")
Minimum <- 3
Maximum <- 100
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
SpeciesID <- "KeggPathwaysAedes"
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
Domain <- "own"
Nomenclature <- "geneStableID"
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
ResultAnalysis <- suppressMessages(ADAnalysis(ComparisonID = Comparison,
ExpressionData = ExpressionAedes,
MinGene = Minimum,
MaxGene = Maximum,
DBSpecies = KeggPathwaysAedes,
AnalysisDomain = Domain,
GeneIdentifier = Nomenclature))
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
head(ResultAnalysis[[1]])
## ----eval=TRUE, fig.height=6, fig.width=6-------------------------------------
DT::datatable(as.data.frame(ResultAnalysis[[2]][1]), width = 800,
options = list(scrollX = TRUE))
## ---- eval=TRUE, label='Session information', , echo=FALSE--------------------
sessionInfo()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.