#' get matrix with gene expression from file
#' @usage getGeneExpMatrix()
#' @export
#' @return dataframe of gene expression
#' @examples
#' readRDS(paste(path.package("canceR"),"/extdata/rdata/brca_tcga73genes.rds", sep=""))
#' \dontrun{
#' getGeneExpMatrix()
#' }
getGeneExpMatrix <- function(){
Sys.chmod(getwd(), mode = "0777", use_umask = TRUE)
if(exists("GeneExpMatrixfile", envir = ENV)){
rm(ENV$GeneExpMatrixfile)
}
ENV$GeneExpMatrixfile <- tclvalue(tkgetOpenFile(filetypes = "{{txt Files} {.txt}} {{All files} *}", title="Choose Gene Expression Matrix from File"))
if (!nchar(ENV$GeneExpMatrixfile)) {
tkmessageBox(message = "No file was selected!")
} else {
Sys.chmod(getwd(), mode = "0777", use_umask = TRUE)
ENV$ProfData<-read.table(ENV$GeneExpMatrixfile)
tkmessageBox(message = paste("The file selected was", ENV$GeneExpMatrixfile))
tkfocus(ttMain)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.