#' @title Gets you the list of the consent groups of the study
#'
#' @param phs dbGap study ID (phs00xxxx, or 00xxxx, or xxx)
#'
#' @return Returns a data frame with 3 cols : "consent group number", "cg short name" and "cg long name"
#'
#' @author Gregoire Versmee, Laura Versmee
#' @export
consent.groups <- function(phs) {
if (!is.parent(phs)) phs <- parent.study(phs)[1]
phs <- phs.version(phs)
url <- paste0("ftp://anonymous:anonymous@ftp.ncbi.nlm.nih.gov/dbgap/studies/", unlist(strsplit(phs, "\\."))[1], "/", phs, "/", "GapExchange_", phs, ".xml")
xmllist <- XML::xmlToList(RCurl::getURLContent(url))
cg <- t(data.frame(xmllist[["Studies"]][["Study"]][["Configuration"]][["ConsentGroups"]]))
return(data.frame(cg, row.names = cg[,1])[,-1])
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.