... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
|
2 | 2 |
importFrom(utils, download.file, head) |
3 |
-importFrom(httr, GET, http_status, content, stop_for_status) |
|
3 |
+importFrom(httr, GET, POST, http_status, content, stop_for_status) |
|
4 | 4 |
importFrom(png, readPNG, writePNG) |
5 | 5 |
importFrom(Biostrings, readAAStringSet, readDNAStringSet, |
6 | 6 |
DNAStringSet, AAStringSet) |
- iterate when more than 100 ids provided
- seems to be a (empirically determined) limit on KEGG's part
- closes #1
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@112198 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,8 +1,9 @@ |
1 | 1 |
|
2 |
-importFrom(httr, GET, http_status, content) |
|
2 |
+importFrom(httr, GET, http_status, content, stop_for_status) |
|
3 | 3 |
importFrom(png, readPNG, writePNG) |
4 | 4 |
importFrom(Biostrings, readAAStringSet, readDNAStringSet, |
5 | 5 |
DNAStringSet, AAStringSet) |
6 |
+import(methods) |
|
6 | 7 |
|
7 | 8 |
export( |
8 | 9 |
keggInfo, |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@72494 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@72220 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@72211 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,39 +1,16 @@ |
1 | 1 |
|
2 | 2 |
importFrom(httr, GET, http_status, content) |
3 |
+importFrom(png, readPNG, writePNG) |
|
4 |
+ |
|
5 |
+export( |
|
6 |
+ keggInfo, |
|
7 |
+ keggList, |
|
8 |
+ listDatabases, |
|
9 |
+ keggFind, |
|
10 |
+ keggGet, |
|
11 |
+ keggConv, |
|
12 |
+ keggLink, |
|
13 |
+ mark.pathway.by.objects, |
|
14 |
+ color.pathway.by.objects |
|
15 |
+) |
|
3 | 16 |
|
4 |
-export(color.pathway.by.objects, |
|
5 |
- get.best.best.neighbors.by.gene, |
|
6 |
- getBestNeighbors, |
|
7 |
- get.best.neighbors.by.gene, |
|
8 |
- get.compounds.by.pathway, |
|
9 |
- get.enzymes.by.pathway, |
|
10 |
- get.genes.by.motifs, |
|
11 |
- get.genes.by.organism, |
|
12 |
- get.genes.by.pathway, |
|
13 |
- get.motifs.by.gene, |
|
14 |
- get.paralogs.by.gene, |
|
15 |
- get.pathways.by.compounds, |
|
16 |
- get.pathways.by.enzymes, |
|
17 |
- get.pathways.by.genes, |
|
18 |
- get.pathways.by.reactions, |
|
19 |
- get.reactions.by.pathway, |
|
20 |
- list.databases, |
|
21 |
- list.organisms, |
|
22 |
- list.pathways, |
|
23 |
- mark.pathway.by.objects, |
|
24 |
- search.compounds.by.name, |
|
25 |
- search.glycans.by.name, |
|
26 |
- search.compounds.by.composition, |
|
27 |
- search.glycans.by.composition, |
|
28 |
- search.glycans.by.mass, |
|
29 |
- search.compounds.by.mass, |
|
30 |
- search.compounds.by.subcomp, |
|
31 |
- search.glycans.by.kcam, |
|
32 |
- bget, |
|
33 |
- bconv, |
|
34 |
- get.ko.by.gene, |
|
35 |
- get.ko.by.ko.class, |
|
36 |
- get.genes.by.ko.class, |
|
37 |
- get.genes.by.ko, |
|
38 |
- get.kos.by.pathway, |
|
39 |
- get.pathways.by.kos) |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@72159 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@72155 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/KEGGREST@72144 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,37 @@ |
1 |
+ |
|
2 |
+export(color.pathway.by.objects, |
|
3 |
+ get.best.best.neighbors.by.gene, |
|
4 |
+ getBestNeighbors, |
|
5 |
+ get.best.neighbors.by.gene, |
|
6 |
+ get.compounds.by.pathway, |
|
7 |
+ get.enzymes.by.pathway, |
|
8 |
+ get.genes.by.motifs, |
|
9 |
+ get.genes.by.organism, |
|
10 |
+ get.genes.by.pathway, |
|
11 |
+ get.motifs.by.gene, |
|
12 |
+ get.paralogs.by.gene, |
|
13 |
+ get.pathways.by.compounds, |
|
14 |
+ get.pathways.by.enzymes, |
|
15 |
+ get.pathways.by.genes, |
|
16 |
+ get.pathways.by.reactions, |
|
17 |
+ get.reactions.by.pathway, |
|
18 |
+ list.databases, |
|
19 |
+ list.organisms, |
|
20 |
+ list.pathways, |
|
21 |
+ mark.pathway.by.objects, |
|
22 |
+ search.compounds.by.name, |
|
23 |
+ search.glycans.by.name, |
|
24 |
+ search.compounds.by.composition, |
|
25 |
+ search.glycans.by.composition, |
|
26 |
+ search.glycans.by.mass, |
|
27 |
+ search.compounds.by.mass, |
|
28 |
+ search.compounds.by.subcomp, |
|
29 |
+ search.glycans.by.kcam, |
|
30 |
+ bget, |
|
31 |
+ bconv, |
|
32 |
+ get.ko.by.gene, |
|
33 |
+ get.ko.by.ko.class, |
|
34 |
+ get.genes.by.ko.class, |
|
35 |
+ get.genes.by.ko, |
|
36 |
+ get.kos.by.pathway, |
|
37 |
+ get.pathways.by.kos) |