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

« back to all changes in this revision

Viewing changes to R/AllClasses.R

  • 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:
5
5
 
6
6
#TODO: I get the distinct feeling that these two should be nested environments, but I don't really know what that means.
7
7
 
 
8
#CuffRun class describes information about a Cuffdiff run?
 
9
#setClass("CuffRun",
 
10
#               representation(DB = "SQLiteConnection",
 
11
#                                               sampleInfo = "data.frame",
 
12
#                                               runParams = "data.frame"
 
13
#                                               )
 
14
#               )
 
15
 
8
16
#CuffData Class is a 'pointer' container to a group of features in a cufflinks dataset
9
17
setClass("CuffData",
10
18
                representation(DB = "SQLiteConnection",
27
35
#CuffSet Class is a 'pointer' container to a group of CuffData elements in a cufflinks dataset
28
36
setClass("CuffSet",
29
37
                representation(DB = "SQLiteConnection",
 
38
                                                runInfo = "data.frame",
 
39
                                                phenoData = "data.frame",
30
40
                                                conditions = "data.frame",
31
41
                                                genes = "CuffData",
32
42
                                                isoforms = "CuffData",
43
53
setClass("CuffFeature",
44
54
                representation(annotation="data.frame",
45
55
                                                fpkm="data.frame",
46
 
                                                diff="data.frame"
 
56
                                                diff="data.frame",
 
57
                                                repFpkm="data.frame",
 
58
                                                count="data.frame",
 
59
                                                genome="character"
47
60
                                )
48
61
                )
49
62
 
50
63
#CuffGene is a 'data' container for all information linked to a single 'gene_id'
51
64
setClass("CuffGene",
52
65
                representation(id = "character",
 
66
                                                features = "data.frame",
53
67
                                                isoforms = "CuffFeature",
54
68
                                                TSS = "CuffFeature",
55
69
                                                CDS = "CuffFeature",
65
79
setClass("CuffFeatureSet",
66
80
                representation(annotation="data.frame",
67
81
                                fpkm="data.frame",
68
 
                                diff="data.frame"
 
82
                                diff="data.frame",
 
83
                                repFpkm="data.frame",
 
84
                                count="data.frame",
 
85
                                genome="character"
69
86
                        )
70
87
)
71
88