- see https://www.ncbi.nlm.nih.gov/news/06-10-2016-ncbi-https/
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@121028 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@118112 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@116774 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,10 +1,13 @@ |
1 |
-#import(methods) |
|
2 |
-#import(utils) |
|
1 |
+import(methods) |
|
2 |
+import(utils) |
|
3 | 3 |
import(Biobase) |
4 | 4 |
import(DBI) |
5 | 5 |
import(RSQLite) |
6 | 6 |
import(BiocGenerics) |
7 | 7 |
import(S4Vectors) |
8 |
+import(AnnotationDbi) |
|
9 |
+import(XML) |
|
10 |
+ |
|
8 | 11 |
|
9 | 12 |
exportClasses( |
10 | 13 |
## from R/AnnDbPkg-maker.R |
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@94798 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@89300 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@87818 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@81712 bc3139a8-67e5-0310-9ffc-ced21a209358
git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/AnnotationForge@80425 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -36,7 +36,10 @@ export( |
36 | 36 |
|
37 | 37 |
## This one will make you an org package: |
38 | 38 |
makeOrgPackageFromNCBI, |
39 |
- |
|
39 |
+ |
|
40 |
+ ## This one will make you an org package from just data.frames: |
|
41 |
+ makeOrgPackage, |
|
42 |
+ |
|
40 | 43 |
## from R/makeProbePackage.R |
41 | 44 |
getProbeDataAffy, |
42 | 45 |
getProbeData_1lq, |
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,45 @@ |
1 |
+#import(methods) |
|
2 |
+#import(utils) |
|
3 |
+import(Biobase) |
|
4 |
+import(DBI) |
|
5 |
+import(RSQLite) |
|
6 |
+import(BiocGenerics) |
|
7 |
+## importFrom(IRanges, metadata) |
|
8 |
+ |
|
9 |
+exportClasses( |
|
10 |
+ ## from R/AnnDbPkg-maker.R |
|
11 |
+ "AnnDbPkgSeed" |
|
12 |
+ |
|
13 |
+) |
|
14 |
+ |
|
15 |
+exportMethods( |
|
16 |
+ "makeAnnDbPkg" |
|
17 |
+) |
|
18 |
+ |
|
19 |
+export( |
|
20 |
+ ## from R/AnnDbPkg-maker.R |
|
21 |
+ loadAnnDbPkgIndex, |
|
22 |
+ |
|
23 |
+ ## help functions for making sqlite files |
|
24 |
+ populateDB, |
|
25 |
+ |
|
26 |
+ ## wrapper functions for making chip packages |
|
27 |
+ makeDBPackage, |
|
28 |
+ |
|
29 |
+ createSimpleBimap, |
|
30 |
+ available.db0pkgs, |
|
31 |
+ available.dbschemas, |
|
32 |
+ available.chipdbschemas, |
|
33 |
+ |
|
34 |
+ #Convenience function to make the intermediate DB pkgs |
|
35 |
+ wrapBaseDBPackages, |
|
36 |
+ |
|
37 |
+ ## This one will make you an org package: |
|
38 |
+ makeOrgPackageFromNCBI, |
|
39 |
+ |
|
40 |
+ ## from R/makeProbePackage.R |
|
41 |
+ getProbeDataAffy, |
|
42 |
+ getProbeData_1lq, |
|
43 |
+ makeProbePackage |
|
44 |
+ |
|
45 |
+) |