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

« back to all changes in this revision

Viewing changes to man/replicates.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{replicates}
 
2
\alias{replicates}
 
3
\alias{replicates,CuffSet-method}
 
4
\alias{replicates,CuffData-method}
 
5
\alias{replicates,CuffFeatureSet-method}
 
6
%- Also NEED an '\alias' for EACH other topic documented here.
 
7
\title{
 
8
Get replicate sample list from CuffData object
 
9
}
 
10
\description{
 
11
Returns a list of replicate names from a CuffData or CuffFeatureSet object
 
12
}
 
13
\usage{
 
14
\S4method{replicates}{CuffData}(object)
 
15
}
 
16
%- maybe also 'usage' for other objects documented here.
 
17
\arguments{
 
18
  \item{object}{
 
19
An object of class ('CuffSet','CuffData')
 
20
}
 
21
}
 
22
\details{
 
23
None
 
24
}
 
25
\value{
 
26
A list of replicate sample names
 
27
}
 
28
\references{
 
29
None
 
30
}
 
31
\author{
 
32
Loyal A. Goff
 
33
}
 
34
\note{
 
35
None
 
36
}
 
37
 
 
38
%% ~Make other sections like Warning with \section{Warning }{....} ~
 
39
 
 
40
\seealso{
 
41
None
 
42
}
 
43
\examples{
 
44
 
 
45
        a<-readCufflinks(system.file("extdata", package="cummeRbund")) #Create CuffSet object
 
46
        replicates(a@genes)
 
47
}
 
48