https://github.com/ctlab/phantasus
Tip revision: 3060d2b3ea45059741f3612cf8273a125315b3ac authored by Nitesh Turaga on 27 October 2020, 15:33:27 UTC
bump x.y.z version to odd y following creation of RELEASE_3_12 branch
bump x.y.z version to odd y following creation of RELEASE_3_12 branch
Tip revision: 3060d2b
shinyGAM.R
#' Constructs data frame with gene annotations and submits it into Shiny GAM web-server
#' @param es Expression set object
#' @return URL for Shiny GAM
#' @importFrom utils write.table
shinyGAMAnalysis <- function(es) {
de <- fData(es)
deFile <- tempfile()
write.table(de, deFile, sep="\t", row.names=FALSE, col.names=TRUE)
# :ToDo: deal with bad certificates and remove ssl_verifypeer option
r <- httr::POST(url="https://artyomovlab.wustl.edu/upload",
body=readBin(deFile, what="raw", n=20e6),
httr::config(ssl_verifypeer = FALSE))
httr::stop_for_status(r)
key <- httr::content(r, as="text", encoding="UTF-8")
shinyGAMUrl <- sprintf("https://artyomovlab.wustl.edu/shiny/gam/?geneDE_key=%s", key)
return(jsonlite::toJSON(shinyGAMUrl))
}