Sample_boxplot | R Documentation |
This function outputs the methylation levels or read numbers of the selected genes or all the genes in the different samples.
Sample_boxplot(
inputmethfile,
inputrefseqfile,
Meth_plot = TRUE,
ylab = "Methylation level",
refseqname = NULL,
col = NULL
)
inputmethfile |
refers to the input file with methylation levels. |
inputrefseqfile |
refers to the input of gene regions. |
Meth_plot |
refers to whether to plot the methylation levels, with default TRUE, otherwise to plot the read numbers. |
ylab |
refers to the label of y axis, with default "Methylation level". |
refseqname |
refers to NCBI ID of specific gene, with default NULL. |
col |
refers to boxplot colors, with default NULL. |
Outputs a boxplot figure with all the samples.
Sample_boxplot(inputmethfile_QC, inputrefseqfile)
Sample_boxplot(inputmethfile_QC, inputrefseqfile, refseqname = "NM_001011874")
Sample_boxplot(inputmethfile_QC, inputrefseqfile, refseqname = c("NM_001011874", "NM_001289465"))
Sample_boxplot(inputmethfile_QC, inputrefseqfile, ylab = "Methylation level (%)",
refseqname = c("NM_001011874", "NM_001289465", "NM_008866"), col = c("red", "green", "blue", "yellow", "purple"))
Sample_boxplot(inputmethfile_QC, inputrefseqfile, Meth_plot = FALSE, ylab = "Read number", col = c("red", "blue"))
Sample_boxplot(inputmethfile_QC, inputrefseqfile, Meth_plot = FALSE, ylab = "Read number", refseqname = c("NM_001011874", "NM_001289465"))
Sample_boxplot(inputmethfile_QC, inputrefseqfile, Meth_plot = FALSE, ylab = "Read number",
refseqname = c("NM_001011874", "NM_001289465", "NM_008866"), col = c("red", "green", "blue"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.