Nothing
csv2Rdat <- function(name = "", rep = 3) {
if (!file.exists(name)) message("File doesn't exist")
caco <- list()
output <- list()
input.data <- utils::read.csv(name)
check.column <- function(v) {
return(sum(c("1", "2") %in% as.integer(v)))
}
cacos <- names(which(apply(input.data, 2, check.column) == 2))
for (i in 1:length(cacos)) {
caco$cases <- input.data$SampleName[which(input.data[, cacos[i]] == 2)]
cont.ind <- which(input.data[, cacos[i]] == 1)
if (length(caco$cases) * rep > length(cont.ind)) caco$cases <- sample(caco$cases, trunc(length(cont.ind) / rep))
conts <- sample(cont.ind, length(caco$cases) * rep)
for (j in 1:rep) {
caco[[paste0("cont", j)]] <- input.data$SampleName[conts[rep(1:rep, each = length(caco$cases)) == j]]
}
output[[cacos[i]]] <- caco
}
output
}
#' Reload saved case-control list file
#'
#' @param case_control_rda A character string giving the name of the case-control
#' file to load. The file is a list of character vectors including subject names
#' in each case-control groups or csv file including subject name for a disease.
#'
#' @param ... name of a column (disease name) of csv file.
#'
#' @return The output will be a list of character vectors include subject names
#' and groups. The class of returned object is caco.
#'
#' @export
case_control <- function(case_control_rda, ...) {
if (missing(case_control_rda)) {
stop("provide a case_control list (rda file)")
}
substrRight <- function(x, n) {
substr(x, nchar(x) - n + 1, nchar(x))
}
if (substrRight(case_control_rda,3) == "csv") {
output <- csv2Rdat(case_control_rda)[[...]]
class(output) <- "caco"
return(output)
} else {
output <- get(load(case_control_rda))
class(output) <- "caco"
return(output)
}
}
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.