This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# R example for working with GEO data using GEOquery and limma for | |
# Seattle SIGKDD data club. | |
# (riffing on auto generated R script for GEO2R service on GEO site) | |
## libraries for everything | |
library(Biobase) | |
library(GEOquery) | |
library(limma) | |
### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var SimpleHashTable = function(hashCode) { | |
var table = []; | |
var Constructor = function() { }; | |
Constructor.prototype.add = function(opts) { | |
}; | |
return new Constructor(); | |
} | |
module.exports.SimpleHashTable = SimpleHashTable; |