Quick_DMCs | R Documentation |
This function outputs the differentially methylated cytosine sites (DMCs).
Quick_DMCs(
paths = paste(system.file(package = "GeneDMRs"), "/methdata", sep = ""),
suffixmeth = ".gz",
control_paths = NULL,
case_paths = NULL
)
paths |
refers to the path of input file, with default the package path. |
suffixmeth |
refers to the suffix of methylation file, e.g., ".gz", ".zip" and so on (some files are in text .txt format, then ".txt" or ".txt.gz"), with default ".gz". |
control_paths |
refers to the path of control groups, with default NULL. |
case_paths |
refers to the path of case groups, with default NULL. |
Outputs DMC results.
allDMCs <- Quick_DMCs()
# if only case and control group (n = 2) paths are provided #
controls <- c("C:/Users/GeneDMRs/methdata/1_1.gz", "C:/Users/GeneDMRs/methdata/1_2.gz", "C:/Users/GeneDMRs/methdata/1_3.gz")
cases <- c("C:/Users/GeneDMRs/methdata/2_1.gz", "C:/Users/GeneDMRs/methdata/2_1.gz")
allDMCs <- Quick_DMCs(control_paths = controls, case_paths = cases)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.