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

« back to all changes in this revision

Viewing changes to man/countMatrix.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{countMatrix}
 
2
\alias{countMatrix}
 
3
\alias{countMatrix,CuffData-method}
 
4
\alias{countMatrix,CuffFeatureSet-method}
 
5
\alias{repCountMatrix}
 
6
\alias{repCountMatrix,CuffData-method}
 
7
\alias{repCountMatrix,CuffFeatureSet-method}
 
8
 
 
9
%- Also NEED an '\alias' for EACH other topic documented here.
 
10
\title{
 
11
countMatrix
 
12
}
 
13
\description{
 
14
Retrieve count values as gene by condition matrix
 
15
}
 
16
\usage{
 
17
\S4method{countMatrix}{CuffData}(object,fullnames=FALSE,sampleIdList)
 
18
\S4method{repCountMatrix}{CuffData}(object,fullnames=FALSE,repIdList)
 
19
}
 
20
 
 
21
\arguments{
 
22
  \item{object}{
 
23
An object of class ('CuffData','CuffFeatureSet','CuffGeneSet','CuffGene',or 'CuffFeature')
 
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 replicate names to subset the resulting replicate matrix.
 
33
}
 
34
}
 
35
\details{
 
36
None.
 
37
}
 
38
\value{
 
39
A feature x condition matrix of count values.
 
40
}
 
41
\references{
 
42
None.
 
43
}
 
44
\author{
 
45
Loyal A. Goff
 
46
}
 
47
\note{
 
48
None
 
49
}
 
50
 
 
51
\examples{
 
52
        data(sampleData)
 
53
        countMatrix(sampleGeneSet)
 
54
        repCountMatrix(sampleGeneSet)
 
55
}