Browse code

use https: rather than http: for NCBI access

- 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

Martin Morgan authored on 17/09/2016 05:57:07
Showing 1 changed files
... ...
@@ -7,7 +7,7 @@ import(BiocGenerics)
7 7
 import(S4Vectors)
8 8
 import(AnnotationDbi)
9 9
 import(XML)
10
-
10
+importFrom(RCurl, getURL)
11 11
 
12 12
 exportClasses(
13 13
     ## from R/AnnDbPkg-maker.R
Browse code

update ChipDb package templates to load DBI in unit tests

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

Valerie Obenchain authored on 02/06/2016 18:29:00
Showing 1 changed files
... ...
@@ -21,7 +21,7 @@ exportMethods(
21 21
 
22 22
 export(
23 23
     ## from R/AnnDbPkg-maker.R
24
-    loadAnnDbPkgIndex,
24
+    loadAnnDbPkgIndex, makeAnnDbPkg,
25 25
        
26 26
     ## help functions for making sqlite files
27 27
     populateDB, 
Browse code

fix warnings related to ':::'

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

Valerie Obenchain authored on 25/04/2016 20:47:32
Showing 1 changed files
... ...
@@ -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
Browse code

Moves createSimpleBimap back where it belongs.

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

Marc Carlson authored on 01/10/2014 19:27:48
Showing 1 changed files
... ...
@@ -26,7 +26,6 @@ export(
26 26
     ## wrapper functions for making chip packages
27 27
     makeDBPackage,
28 28
 
29
-    createSimpleBimap,
30 29
     available.db0pkgs,
31 30
     available.dbschemas, 
32 31
     available.chipdbschemas,
Browse code

need to import S4Vectors, at least for metadata()

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

Herve Pages authored on 21/04/2014 18:20:36
Showing 1 changed files
... ...
@@ -4,7 +4,7 @@ import(Biobase)
4 4
 import(DBI)
5 5
 import(RSQLite)
6 6
 import(BiocGenerics)
7
-## importFrom(IRanges, metadata)
7
+import(S4Vectors)
8 8
 
9 9
 exportClasses(
10 10
     ## from R/AnnDbPkg-maker.R
Browse code

Add source information to allow for building of new Inparanoid DBs.

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

Marc Carlson authored on 24/03/2014 22:37:21
Showing 1 changed files
... ...
@@ -44,6 +44,6 @@ export(
44 44
     ## from R/makeProbePackage.R
45 45
     getProbeDataAffy,
46 46
     getProbeData_1lq,
47
-    makeProbePackage
48
-
47
+    makeProbePackage,
48
+    makeInpDb
49 49
 )
Browse code

Adds skeleton for new function that aims to allow users to make chip packages more flexibly.

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

Marc Carlson authored on 15/10/2013 22:46:58
Showing 1 changed files
... ...
@@ -39,6 +39,7 @@ export(
39 39
 
40 40
     ## This one will make you an org package from just data.frames:
41 41
     makeOrgPackage,
42
+    makeChipPackage,
42 43
        
43 44
     ## from R/makeProbePackage.R
44 45
     getProbeDataAffy,
Browse code

Finally exposes the makeOrgPackage() function that uses data.frames.

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

Marc Carlson authored on 14/09/2013 00:05:42
Showing 1 changed files
... ...
@@ -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,
Browse code

Splits AnnoationDbi into AnnotationDbi and AnnotationForge

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

Marc Carlson authored on 25/06/2012 18:39:17
Showing 1 changed files
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
+)