create_eQTM | R Documentation |
Create an expression quantitative trait methylation (eQTM) object
create_eQTM(data, metadata = list())
data |
A data.frame containing eQTM data with columns: cpg, statistics, p_value, distance, and at least one of entrez or ensembl.
|
metadata |
A list of metadata (optional). |
An eQTM object.
data <- data.frame(
cpg = c("cg000001", "cg000002"),
statistics = c(2.5, -1.8),
p_value = c(0.01, 0.03),
distance = c(50000, 80000),
entrez = c("673", "1956")
)
eqtm_obj <- create_eQTM(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.