plotRLE-methods: Methods for Function 'plotRLE' in Package 'EDASeq'

Description Usage Arguments Details Methods Examples

Description

plotRLE produces a Relative Log Expression (RLE) plot of the counts in x

Usage

1

Arguments

x

Either a numeric matrix or a SeqExpressionSet object containing the gene expression.

...

See par

Details

The Relative Log Expression (RLE) plot is a useful diagnostic plot to visualize the differences between the distributions of read counts across samples.

It shows the boxplots of the log-ratios of the gene-level read counts of each sample to those of a reference sample (defined as the median across the samples). Ideally, the distributions should be centered around the zero line and as tight as possible. Clear deviations indicate the need for normalization and/or the presence of outlying samples.

Methods

signature(x = "matrix")
signature(x = "SeqExpressionSet")

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(yeastRNASeq)
data(geneLevelData)

mat <- as.matrix(geneLevelData)

data <- newSeqExpressionSet(mat,
                            phenoData=AnnotatedDataFrame(
                                      data.frame(conditions=factor(c("mut", "mut", "wt", "wt")),
                                                 row.names=colnames(geneLevelData))))


plotRLE(data, col=rep(2:3, each=2))

EDASeq documentation built on Nov. 8, 2020, 8:29 p.m.