See the graph data for ontology information.
NCBI
Hapmap
Bioconductor Data
ENCODE Project
Human Genome Project
Personal Genome Project
Archive for the ‘Data’ Category
Bioinformatics Data
Posted in Data on 12 November 2008 | Leave a Comment »
Graph Data
Posted in Data on 12 November 2008 | 1 Comment »
Ontologies
My thesis dealt in part with ontologies, so I have a bit of code to dig out which works on ontologies. Perhaps I can mine this group of data in the future.
Note for handling hierarchical data in SQL
Gene Ontology data, available for download as MySQL database
SIC codes
NAICS codes (replacement for SIC)
Library of Congress
Networks
This is empty [...]
Spatial Data
Posted in Data on 9 October 2008 | 1 Comment »
What follows is spatial that I have found useful. It’s a mix of marine/oceanic data (especially around Florida), weather and demographics/census (esp US and world).
Hurricane paths
Tropical Cyclone probabilities
GIS data layers of marine ecosystems for Florida
Florida Fish and Wildlife
NOAA’s dive page, with underwater obstruction data
Loran tower locations
Ship locations (real time)
Inferring neighborhood boundaries from geocoded flickr photos [...]
[OS X] Installing MySQL
Posted in Data, Tools on 8 October 2008 | Leave a Comment »
First, setup the main account…
http://dev.mysql.com/doc/refman/5.0/en/mac-os-x-installation.html
shell> mysql -u root
mysql> SET PASSWORD FOR ”@’localhost’ = PASSWORD(‘newpwd’);
mysql> SET PASSWORD FOR ”@’host_name’ = PASSWORD(‘newpwd’);
Now I have to setup a user account…
mysql> GRANT ALL PRIVILEGES ON *.* TO ‘monty’@'localhost’
-> IDENTIFIED BY ’some_pass’ WITH GRANT OPTION;
mysql> GRANT ALL PRIVILEGES ON *.* TO ‘monty’@'%’
[...]


