Description Usage Arguments Value Author(s) Examples
View source: R/metaseqr.plot.R
A wrapper over the general boxplot function, suitable for matrices produced and processed with the metaseqr package. Intended for internal use but can be easily used as stand-alone. It can colors boxes based on group depending on the name argument.
1 2 3 |
mat |
the count data matrix. |
name |
the names of the samples plotted on the
boxdiagplot. If |
log.it |
whether to log transform the values of mat
or not. It can be |
y.lim |
custom y-axis limits. Leave the string
|
is.norm |
a logical indicating whether object contains raw or normalized data. It is not essential and it serves only plot annotation purposes. |
output |
one or more R plotting device to direct the
plot result to. Supported mechanisms: |
path |
the path to create output files. |
alt.names |
an optional vector of names, e.g. HUGO
gene symbols, alternative or complementary to the unique
rownames of |
... |
further arguments to be passed to plot
devices, such as parameter from |
The filename of the boxplot produced if it's a file.
Panagiotis Moulos
1 2 3 4 5 6 7 8 9 10 | # Non-normalized boxplot
require(DESeq)
data.matrix <- counts(makeExampleCountDataSet())
sample.list <- list(A=c("A1","A2"),B=c("B1","B2","B3"))
diagplot.boxplot(data.matrix,sample.list)
# Normalized boxplot
norm.args <- get.defaults("normalization","deseq")
object <- normalize.deseq(data.matrix,sample.list,norm.args)
diagplot.boxplot(object,sample.list)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.