git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@109954 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -23,18 +23,31 @@ |
23 | 23 |
\references{ |
24 | 24 |
\url{http://www.genome.ad.jp/kegg/} |
25 | 25 |
} |
26 |
+ |
|
27 |
+\seealso{ |
|
28 |
+ \itemize{ |
|
29 |
+ \item \code{\link[AnnotationDbi]{AnnotationDb-class}} for use of |
|
30 |
+ the \code{select()} interface. |
|
31 |
+ } |
|
32 |
+} |
|
33 |
+ |
|
26 | 34 |
\examples{ |
27 |
- x <- @ANNOBJPREFIX@PATH |
|
28 |
- # Get the probe identifiers that are mapped to a KEGG pathway ID |
|
29 |
- mapped_probes <- mappedkeys(x) |
|
30 |
- # Convert to a list |
|
31 |
- xx <- as.list(x[mapped_probes]) |
|
32 |
- if(length(xx) > 0) { |
|
33 |
- # Get the PATH for the first five probes |
|
34 |
- xx[1:5] |
|
35 |
- # Get the first one |
|
36 |
- xx[[1]] |
|
37 |
- } |
|
35 |
+## select() interface: |
|
36 |
+## Objects in this package can be accessed using the select() interface |
|
37 |
+## from the AnnotationDbi package. See ?select for details. |
|
38 |
+ |
|
39 |
+## Bimap interface: |
|
40 |
+x <- @ANNOBJPREFIX@PATH |
|
41 |
+# Get the probe identifiers that are mapped to a KEGG pathway ID |
|
42 |
+mapped_probes <- mappedkeys(x) |
|
43 |
+# Convert to a list |
|
44 |
+xx <- as.list(x[mapped_probes]) |
|
45 |
+if(length(xx) > 0) { |
|
46 |
+ # Get the PATH for the first five probes |
|
47 |
+ xx[1:5] |
|
48 |
+ # Get the first one |
|
49 |
+ xx[[1]] |
|
50 |
+} |
|
38 | 51 |
} |
39 | 52 |
\keyword{datasets} |
40 | 53 |
|
All the resources for creating annotations are getting bulky and need
to be put into another place. We are calling that place
AnnotationForge.
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@66999 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,40 @@ |
1 |
+\name{@ANNOBJPREFIX@PATH} |
|
2 |
+\alias{@ANNOBJPREFIX@PATH} |
|
3 |
+\title{Mappings between probe identifiers and KEGG pathway identifiers} |
|
4 |
+\description{ |
|
5 |
+ KEGG (Kyoto Encyclopedia of Genes and Genomes) maintains pathway data |
|
6 |
+ for various organisms. @ANNOBJPREFIX@PATH maps probe identifiers to the |
|
7 |
+ identifiers used by KEGG for pathways in which the genes represented |
|
8 |
+ by the probe identifiers are involved |
|
9 |
+} |
|
10 |
+\details{ |
|
11 |
+ Each KEGG pathway has a name and identifier. Pathway name for a given pathway |
|
12 |
+ identifier can be obtained using the KEGG data package that can either be |
|
13 |
+ built using AnnBuilder or downloaded from Bioconductor |
|
14 |
+ \url{http://www.bioconductor.org}. |
|
15 |
+ |
|
16 |
+ Graphic presentations of pathways are searchable at |
|
17 |
+ url http://www.genome.ad.jp/kegg/pathway.html by using pathway identifiers as |
|
18 |
+ keys. |
|
19 |
+ |
|
20 |
+ Mappings were based on data provided by: @PATHSOURCE@ |
|
21 |
+ |
|
22 |
+} |
|
23 |
+\references{ |
|
24 |
+ \url{http://www.genome.ad.jp/kegg/} |
|
25 |
+} |
|
26 |
+\examples{ |
|
27 |
+ x <- @ANNOBJPREFIX@PATH |
|
28 |
+ # Get the probe identifiers that are mapped to a KEGG pathway ID |
|
29 |
+ mapped_probes <- mappedkeys(x) |
|
30 |
+ # Convert to a list |
|
31 |
+ xx <- as.list(x[mapped_probes]) |
|
32 |
+ if(length(xx) > 0) { |
|
33 |
+ # Get the PATH for the first five probes |
|
34 |
+ xx[1:5] |
|
35 |
+ # Get the first one |
|
36 |
+ xx[[1]] |
|
37 |
+ } |
|
38 |
+} |
|
39 |
+\keyword{datasets} |
|
40 |
+ |