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

« back to all changes in this revision

Viewing changes to man/readCufflinks.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:
8
8
This initializes the backend SQLite table and provides a DB connection for all downstream data analysis.
9
9
}
10
10
\usage{
11
 
readCufflinks(dir = getwd(), dbFile = "cuffData.db", geneFPKM = "genes.fpkm_tracking", geneDiff = "gene_exp.diff", isoformFPKM = "isoforms.fpkm_tracking", isoformDiff = "isoform_exp.diff", TSSFPKM = "tss_groups.fpkm_tracking", TSSDiff = "tss_group_exp.diff", CDSFPKM = "cds.fpkm_tracking", CDSExpDiff = "cds_exp.diff", CDSDiff = "cds.diff", promoterFile = "promoters.diff", splicingFile = "splicing.diff", driver = "SQLite", rebuild = FALSE, ...)
 
11
readCufflinks(dir = getwd(), dbFile = "cuffData.db", gtfFile = NULL, 
 
12
                                runInfoFile = "run.info", repTableFile = "read_groups.info",
 
13
                                geneFPKM = "genes.fpkm_tracking", geneDiff = "gene_exp.diff", geneCount="genes.count_tracking", geneRep="genes.read_group_tracking",
 
14
                                isoformFPKM = "isoforms.fpkm_tracking", isoformDiff = "isoform_exp.diff", isoformCount="isoforms.count_tracking", isoformRep="isoforms.read_group_tracking",
 
15
                                TSSFPKM = "tss_groups.fpkm_tracking", TSSDiff = "tss_group_exp.diff", TSSCount="tss_groups.count_tracking", TSSRep="tss_groups.read_group_tracking",
 
16
                                CDSFPKM = "cds.fpkm_tracking", CDSExpDiff = "cds_exp.diff", CDSCount="cds.count_tracking", CDSRep="cds.read_group_tracking",
 
17
                                CDSDiff = "cds.diff",
 
18
                                promoterFile = "promoters.diff", 
 
19
                                splicingFile = "splicing.diff", 
 
20
                                driver = "SQLite", 
 
21
                                genome = NULL, 
 
22
                                rebuild = FALSE,verbose=FALSE, ...)
12
23
}
13
24
%- maybe also 'usage' for other objects documented here.
14
25
\arguments{
18
29
  \item{dbFile}{
19
30
Name of backend database. Default is 'cuffData.db'
20
31
}
 
32
  \item{gtfFile}{
 
33
Path to .gtf file used in cuffdiff analysis. This file will be parsed to retrieve transcript model information.
 
34
}
 
35
  \item{runInfoFile}{
 
36
run.info file
 
37
}
 
38
  \item{repTableFile}{
 
39
read_groups.info file
 
40
}
21
41
  \item{geneFPKM}{
22
42
genes.fpkm_tracking file
23
43
}
24
44
  \item{geneDiff}{
25
45
gene_exp.diff file
26
46
}
 
47
  \item{geneCount}{
 
48
genes.count_tracking file
 
49
}
 
50
  \item{geneRep}{
 
51
genes.read_group_tracking file
 
52
}
27
53
  \item{isoformFPKM}{
28
54
isoforms.fpkm_tracking file
29
55
}
30
56
  \item{isoformDiff}{
31
57
isoform_exp.diff file
32
58
}
 
59
  \item{isoformCount}{
 
60
isoforms.count_tracking file
 
61
}
 
62
  \item{isoformRep}{
 
63
isoform.read_group_tracking file
 
64
}
33
65
  \item{TSSFPKM}{
34
66
tss_groups.fpkm_tracking file
35
67
}
36
68
  \item{TSSDiff}{
37
69
tss_group_exp.diff file
38
70
}
 
71
  \item{TSSCount}{
 
72
tss_groups.count_tracking file
 
73
}
 
74
  \item{TSSRep}{
 
75
tss_groups.read_group_tracking file
 
76
}
39
77
  \item{CDSFPKM}{
40
78
cds.fpkm_tracking file
41
79
}
42
80
  \item{CDSExpDiff}{
43
81
cds_exp.diff file
44
82
}
 
83
  \item{CDSCount}{
 
84
cds.count_tracking file
 
85
}
 
86
  \item{CDSRep}{
 
87
cds.read_group_tracking file
 
88
}
45
89
  \item{CDSDiff}{
46
90
cds.diff file (distribution tests on CDS)
47
91
}
54
98
  \item{driver}{
55
99
Driver for backend database. (Currently only "SQLite" is supported).
56
100
}
 
101
  \item{genome}{
 
102
A character string indicating to which genome build the .gtf annotations belong (e.g. 'hg19' or 'mm9')
 
103
}
57
104
  \item{rebuild}{
58
105
A logical argument to rebuild database backend.
59
106
}
 
107
  \item{verbose}{
 
108
A logical argument for super verbose reporting (As if it wasn't enough already!)
 
109
}
60
110
  \item{\dots}{
61
111
Additional arguments to readCufflinks
62
112
}