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

« back to all changes in this revision

Viewing changes to man/features.Rd

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2013-12-28 17:17:25 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: package-import@ubuntu.com-20131228171725-i8u6il75mzakjy43
Tags: upstream-2.4.1
ImportĀ upstreamĀ versionĀ 2.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
\name{features}
2
2
\alias{features}
3
 
\alias{features,CuffData-method}
 
3
\alias{features,CuffGene-method}
4
4
%- Also NEED an '\alias' for EACH other topic documented here.
5
5
\title{
6
6
Features
7
7
}
8
8
\description{
9
 
Returns a data frame of features from a CuffData, CuffFeatureSet, or CuffFeature object
 
9
Returns a data frame of features from a CuffGene object
10
10
}
11
11
\usage{
12
 
\S4method{features}{CuffData}(object)
 
12
\S4method{features}{CuffGene}(object)
13
13
}
14
14
%- maybe also 'usage' for other objects documented here.
15
15
\arguments{
16
16
  \item{object}{
17
 
An object of class ('CuffData','CuffFeatureSet', or 'CuffFeature')
 
17
An object of class ('CuffGene')
18
18
}
19
19
}
20
20
\details{
21
 
If features have been added to cuffData via addFeatures() then these will be presented as well.
 
21
None
22
22
}
23
23
\value{
24
24
A data.frame of feature-level information
35
35
 
36
36
\examples{
37
37
        data(sampleData)
38
 
        features(sampleGeneSet)
 
38
        features(PINK1)
39
39
}