Description Usage Arguments Value Examples
Scatterplot of transformed counts from two samples or grid of all samples
1 2 3 4 5 6 7 8 9 10 11 |
countMatrix |
|
targets |
targets |
cmp |
|
preFilter |
allows removing rows in which there are very few reads.
Accepts a numeric value with the minimum of total reads to keep. Default is |
samples |
a |
scattermatrix |
if |
plotly |
logical: when |
savePlot |
logical: when |
filePlot |
file name where the plot will be saved. For more information, please consult the
|
returns an object of ggplot2 plot
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | library(systemPipeR)
## Targets file
targetspath <- system.file("extdata", "targets.txt", package="systemPipeR")
targets <- read.delim(targetspath, comment="#")
cmp <- systemPipeR::readComp(file=targetspath, format="matrix", delim="-")
## Count table file
countMatrixPath <- system.file("extdata", "countDFeByg.xls", package="systemPipeR")
countMatrix <- read.delim(countMatrixPath, row.names=1)
## Plot
exploreDDSplot(countMatrix, targets, cmp=cmp[[1]], preFilter=NULL, samples=c(3,4))
exploreDDSplot(countMatrix, targets, cmp=cmp[[1]], samples=c("M1A", "M1B"), save = TRUE,
filePlot = "transf_deseq2.pdf")
## Plot Correlogram
exploreDDSplot(countMatrix, targets, cmp=cmp[[1]], preFilter=NULL, samples=c("M1A", "M1B"), scattermatrix=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.