#' run all workflow
#'
#' runALL include runCheck runDEG runHyper runGSEA runMSigDB
#'
#' @param object a DEGContainer
#' @param dir a directory to store results
#' @param top top for enrich result filter
#' @param parallel use parallel in DESeq2
#' @param GO logic, run GO in enrich step
#' @param KEGG logic, run KEGG in enrich step
#'
#' @return a DEGContainer
#'
#' @export
runALL <- function(object,dir = "output",top = 10,parallel = T,GO = FALSE,KEGG = TRUE) {
tryCatch(
expr = {
runCheck(object = object,dir = dir)
},
error = function(e){
usethis::ui_oops("Something wrong occured in Check.
try again later by {ui_code('runCheck')}.")
}
)
tryCatch(
expr = {
object_g <- runDEG(obj = object,dir =dir, parallel = parallel)
},
error = function(e){
usethis::ui_oops("Something wrong occured in DEG analysis.
Can't continue....")
}
)
object_h <- tryCatch(
expr = {
runHyper(obj = object_g,dir = dir,top = top,GO = GO,KEGG = KEGG)
},
error = function(e){
usethis::ui_oops("Something wrong occured in Hyper analysis. Skip it now.
Try again later by {ui_code('runHyper')}")
object_g
}
)
object_gs <- tryCatch(
expr = {
runGSEA(obj = object_h,dir = dir,top = top,GO = GO,KEGG= KEGG)
},
error = function(e){
usethis::ui_oops("Something wrong occured in GSEA analysis. Skip it now.
Try again later by {ui_code('runGSEA')}")
object_h
}
)
object_va <- tryCatch(
expr = {
runMSigDB(obj = object_gs,dir = dir,top = top)
},
error = function(e){
usethis::ui_oops("Something wrong occured in runMSigDB analysis. Skip it now.
Try again later by {ui_code('runMSigDB')}")
object_gs
}
)
return(object_va)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.