Browse code

TP53 genome is now named by the TxDb package from which the TP53 region was retrieved, so that it is automatically refreshed with annotation changes, and devel and release can coexist.

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/gmapR@87282 bc3139a8-67e5-0310-9ffc-ced21a209358

Michael Lawrence authored on 10/03/2014 23:10:51
Showing 1 changed files
... ...
@@ -19,7 +19,9 @@ TP53Which()
19 19
   For \code{TP53Genome}, a \code{GmapGenome} object. If this is the
20 20
   first time the user has run this function, a side-effect will be the
21 21
   generation of an on-disk genome index, under the name
22
-  \dQuote{TP53_demo} in the default genome directory.
22
+  \dQuote{TP53_demo_VERSION} in the default genome directory, where
23
+  \code{VERSION} is the version of the TxDb package providing the bounds
24
+  of the P53 gene.
23 25
 
24 26
   For \code{TP53Which}, a \code{GRanges} of the extents of the TP53
25 27
   gene, translated to the space of \code{TP53Genome}.
Browse code

Refactor various TP53Genome-related convenience functions. Makes it easier to get out genomic annotations in the TP53 genome space.

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/gmapR@69354 bc3139a8-67e5-0310-9ffc-ced21a209358

Michael Lawrence authored on 12/09/2012 05:14:34
Showing 1 changed files
... ...
@@ -1,5 +1,6 @@
1 1
 \name{TP53Genome}
2 2
 \alias{TP53Genome}
3
+\alias{TP53Which}
3 4
 \title{
4 5
   Demo genome around TP53
5 6
 }
... ...
@@ -12,12 +13,16 @@
12 13
 }
13 14
 \usage{
14 15
 TP53Genome()
16
+TP53Which()
15 17
 }
16 18
 \value{
17
-  A \code{GmapGenome} object. If this is the first time the user has run
18
-  this function, a side-effect will be the generation of an on-disk
19
-  genome index, under the name \dQuote{TP53_demo} in the default genome
20
-  directory. 
19
+  For \code{TP53Genome}, a \code{GmapGenome} object. If this is the
20
+  first time the user has run this function, a side-effect will be the
21
+  generation of an on-disk genome index, under the name
22
+  \dQuote{TP53_demo} in the default genome directory.
23
+
24
+  For \code{TP53Which}, a \code{GRanges} of the extents of the TP53
25
+  gene, translated to the space of \code{TP53Genome}.
21 26
 }
22 27
 \author{
23 28
   Michael Lawrence, Cory Barr
Browse code

Add TP53Genome function

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/gmapR@69157 bc3139a8-67e5-0310-9ffc-ced21a209358

Michael Lawrence authored on 06/09/2012 23:14:14
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,28 @@
1
+\name{TP53Genome}
2
+\alias{TP53Genome}
3
+\title{
4
+  Demo genome around TP53
5
+}
6
+\description{
7
+  Returns a \code{\linkS4class{GmapGenome}} object consisting of the
8
+  UCSC hg19 sequence centered on the region of the TP53 gene, with 1 Mb
9
+  flanking sequence on each side. This is intended as a
10
+  test/demonstration genome and can be used, e.g., in conjunction with
11
+  the \code{LungCancerLines} data package.
12
+}
13
+\usage{
14
+TP53Genome()
15
+}
16
+\value{
17
+  A \code{GmapGenome} object. If this is the first time the user has run
18
+  this function, a side-effect will be the generation of an on-disk
19
+  genome index, under the name \dQuote{TP53_demo} in the default genome
20
+  directory. 
21
+}
22
+\author{
23
+  Michael Lawrence, Cory Barr
24
+}
25
+
26
+\examples{
27
+TP53Genome()
28
+}