Nothing
recountSampleFormat <- function() {
list(
tablename = "Sample metadata",
description = "Sample metadata for a SRA project",
dataType = "Sample metadata",
# Transpose data before parsing? If so, a row in the transposed dataset
# would be a column in the original
skip = 1, # Rows to skip when parsing file (include header)
transpose = FALSE,
# Format checker information
rowCheck = TRUE, # Check a row (TRUE) or a column (FALSE)
checkIndex = 1, # Index of row/column to check the format
# File string to check
check = c("project", "sample", "experiment", "run",
"read_count_as_reported_by_sra", "reads_downloaded"),
# Parsing information
delim = "\t", # Delimiter used to separate fields
colNames = 1, # Row to use for column names
rowNames = 4, # Column to use for row names
ignoreCols = 1, # Columns to ignore
ignoreRows = NULL, # Rows to ignore
commentChar = NULL, # Ignore lines starting with this string
# Remove duplicated rows
unique = FALSE,
# Identity of rows and columns
rows = "samples",
columns = "attributes",
# Default columns to show (NULL to show all)
show = NULL,
process = function(data) {
# Unfold data characteristics if available
if (any(!is.na(data$characteristics))) {
dataFramework <- paste("data.frame(\"%s\",",
"check.names=FALSE,",
"stringsAsFactors=FALSE)")
extra <- gsub(": ", '"="', data$characteristics, fixed=TRUE)
extra <- gsub('c\\("(.*)"\\)', sprintf(dataFramework, "\\1"),
extra)
# In cases containing only one item of extra information
extra <- ifelse(grepl("^data\\.frame", extra), extra,
sprintf(dataFramework, extra))
extra <- sprintf("plyr::rbind.fill(%s)",
paste0(extra, collapse=", "))
extra <- tryCatch(eval(parse(text=extra)), error=return)
if (is(extra, "error")) {
msg <- paste("SRA sample metadata contained extra",
"information that could not be parsed.")
warning(msg)
} else {
data <- cbind(data, extra)
data$characteristics <- NULL
}
}
return(data)
}
)
}
attr(recountSampleFormat, "loader") <- "formats"
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.