~ubuntu-branches/ubuntu/utopic/r-bioc-cummerbund/utopic

« back to all changes in this revision

Viewing changes to man/QCplots.Rd

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2013-12-28 17:17:25 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131228171725-polmzo8go4m371c6
Tags: 2.4.1-1
* New upstream version
* debian/rules: Remove useless creation of ${R-Depends}
* debian/control: Versioned Build-Depends: r-base-dev (>= 3.0)
* debian/README.test: add hint how to test the package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
\name{QCplots}
 
2
\alias{fpkmSCVPlot}
 
3
\alias{fpkmSCVPlot,CuffData-method}
 
4
 
 
5
\title{
 
6
Quality Control visualizations          
 
7
}
 
8
\description{
 
9
A collection of ggplot2 visualizations for quality control assessment of cuffdiff output.
 
10
 
 
11
- fpkmSCVPlot: A measure of cross-replicate variability, the squared coefficient of variation is a normalized measure of variance between empirical repicate FPKM values per condition, across the range of FPKM estimates.
 
12
 
 
13
}
 
14
\usage{
 
15
\S4method{fpkmSCVPlot}{CuffData}(object,FPKMLowerBound=1)
 
16
}
 
17
 
 
18
\arguments{
 
19
  \item{object}{
 
20
An object of class CuffData.
 
21
}
 
22
  \item{FPKMLowerBound}{
 
23
A lower limit cutoff for FPKM values from which a fit of squared Coefficient of variation (default: 1)  
 
24
}
 
25
}
 
26
\details{
 
27
None
 
28
}
 
29
\value{
 
30
A ggplot2 plot object with a geom_box layer.
 
31
}
 
32
\references{
 
33
None
 
34
}
 
35
\author{
 
36
Loyal A. Goff
 
37
}
 
38
\note{
 
39
None
 
40
}
 
41
\examples{
 
42
        a<-readCufflinks(system.file("extdata", package="cummeRbund")) #Read cufflinks data and create CuffSet object
 
43
        genes<-a@genes #CuffData object for all genes
 
44
        csBoxplot(genes)
 
45
}
 
46