Skip to content

Instantly share code, notes, and snippets.

View bjkeller's full-sized avatar

Ben Keller bjkeller

  • University of Washington
  • Seattle, WA
View GitHub Profile
# 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)
###
@bjkeller
bjkeller / simplehashtable.js
Created March 25, 2014 18:44
Beginning of simple hash table in JS for workshopping. Uses higher-order function that creates a hash code function on Juliene Walker's jsw_hash.
var SimpleHashTable = function(hashCode) {
var table = [];
var Constructor = function() { };
Constructor.prototype.add = function(opts) {
};
return new Constructor();
}
module.exports.SimpleHashTable = SimpleHashTable;