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

« back to all changes in this revision

Viewing changes to man/fpkmMatrix.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
1
\name{fpkmMatrix}
2
2
\alias{fpkmMatrix}
3
3
\alias{fpkmMatrix,CuffData-method}
 
4
\alias{fpkmMatrix,CuffFeatureSet-method}
 
5
\alias{repFpkmMatrix}
 
6
\alias{repFpkmMatrix,CuffData-method}
 
7
\alias{repFpkmMatrix,CuffFeatureSet-method}
 
8
 
4
9
%- Also NEED an '\alias' for EACH other topic documented here.
5
10
\title{
6
11
fpkmMatrix
7
12
}
8
13
\description{
9
 
Retrieve FPKM values as gene by condition matrix
 
14
Retrieve FPKM values as gene by condition (fpkmMatrix) or gene by replicate (repFpkmMatrix) matrix
10
15
}
11
16
\usage{
12
 
\S4method{fpkmMatrix}{CuffData}(object)
 
17
\S4method{fpkmMatrix}{CuffData}(object,fullnames=FALSE,sampleIdList)
 
18
\S4method{repFpkmMatrix}{CuffData}(object,fullnames=FALSE,repIdList)
13
19
}
14
20
 
15
21
\arguments{
16
22
  \item{object}{
17
23
An object of class ('CuffData','CuffFeatureSet','CuffGeneSet','CuffGene',or 'CuffFeature')
18
24
}
 
25
  \item{fullnames}{
 
26
A logical value whether or not to concatenate gene_short_name and tracking_id values (easier to read labels)
 
27
}
 
28
  \item{sampleIdList}{
 
29
A vector of sample names to subset the resulting matrix.
 
30
}
 
31
  \item{repIdList}{
 
32
A vector of sample names to subset the resulting matrix.
 
33
}
19
34
}
20
35
\details{
21
36
None.
36
51
\examples{
37
52
        data(sampleData)
38
53
        fpkmMatrix(sampleGeneSet)
 
54
        repFpkmMatrix(sampleGeneSet)
39
55
}