Sign in or Join FriendFeed
FriendFeed is the easiest way to share online. Learn more »

Ntino › Comments

Ntino
apple extended II for $20 [Archive] - geekhack forums - http://geekhack.org/archive...
Ntino
Tag: Bioinformatics :: GPGPU.org - http://gpgpu.org/tag...
Initial Experiences Porting a Bioinformatics Application to a Graphics Processor - Ntino
Ntino
TDWG: Homepage - http://www.tdwg.org/
Biodiversity Information Standards (TDWG) - Ntino
Ntino
mrflip.github.com/wukong - Install Notes - http://mrflip.github.com/wukong...
EC2 means anyone with a $10 bill can rent a 10-machine cluster with 1TB of distributed storage for 8 hours. - Ntino
Ntino
means to sort based on field - Ntino
Ntino
NEBC Software Documentation Pages: Bio-Linux Bioinformatics package repository - http://nebc.nox.ac.uk/envgen...
deb http://nebc.nox.ac.uk/bio-lin... unstable bio-linux - Ntino
Ntino
Ntino
Help:FAQ - Openbox - http://icculus.org/openbox...
How do I run Openbox across multiple X screens - Ntino
How do I run Openbox across multiple X screens - Ntino
Ntino
Patterns - cloudComputing - wikis.sun.com - http://wikis.sun.com/display...
Cloud Computing Patterns - Ntino
Ntino
Xen Cloud Platform - http://www.xen.org/product...
Xen Cloud Platform - Advanced Virtualization Infrastructure for the Clouds - Ntino
Ntino
Ntino
Cloud9: A Library for Hadoop - http://www.umiacs.umd.edu/~jimmyl...
Cloud9 A MapReduce Library for Hadoop - Ntino
Ntino
Creating Hadoop pe under SGE : Ravi Chandra Nallan - http://blogs.sun.com/ravee...
Creating Hadoop pe under SGE - Ntino
Ntino
Distributed Systems - Google Code University - Google Code - http://code.google.com/edu...
Cluster Computing and MapReduce - Ntino
Ntino
Hadoop Live CD at OpenSolaris.org - http://opensolaris.org/os...
OpenSolaris Project: Hadoop Live CD - Ntino
Ntino
[Mpiblast-users] FYI. --disable-mpi-db may trigger crash? - http://www.mail-archive.com/mpiblas...
--disable-mpi-db - Ntino
Ntino
Ntino
QTronix Libra 35 trackball gel wrist rest - http://www.trackballworld.com/40-710...
Libra 35 - Ntino
Ntino
execute a shell script in parallel to many hosts - Ntino
Ntino
Hadoop World: NYC 2009 | Cloudera - http://www.cloudera.com/hadoop-...
Paul Brown, Booz Allen - Ntino
Ntino
Jolicloud, a cool new OS for your netbook - http://www.jolicloud.com/
Jolicloud, a cool new OS for your netbook - Ntino
Ntino
“In the fullness of time, a genome center is going to want to get onto the cloud, because they have to lower their costs, just the same as anybody else, to get to the $1000 genome - Ntino
Ntino
MCPL: Gaithersburg Library - http://www.montgomerycountymd.gov/apps...
Gaithersburg Library - Ntino
Ntino
Bringing Web 2.0 to bioinformatics -- Zhang et al. 10 (1): 1 -- Briefings in Bioinformatics - http://bib.oxfordjournals.org/cgi...
SaaS - Ntino
Ntino
Ubuntu Netbook on Virtualbox - Platonic - http://platonic.techfiz.info/2009...
Ubuntu Netbook Image - Ntino
Ntino
Cloud42 - GUI and Web service interface for Amazon EC2 - http://cloud42.net/
Open Source management framework for Amazon EC2 - Ntino
Ntino
How to unlock the BlackBerry Pearl and enter Blackberry Unlock Codes | AskStudent - http://www.askstudent.com/hacking...
I recently got the latest Blackberry Pearl cell phone and absolutely love it. I might be travelling overseas for couple of weeks and I definitely - Ntino
Ntino
IBM Lenovo Thinkpad X40 Laptop Pentium M Centrino 1.2GHz LV E2382ECU - http://www.pacificgeek.com/product...
Thinkpad X40 - Ntino
Ntino
start [Jailtime.org] - http://jailtime.org/
Jailtime.org: Virtual filesystems for Xen - Ntino
Sutee Dee
Do any of you have experience representing biological data (esp network data) in rdf? I'm looking to learn from real world implementations.
Don't know the answer, but great question - Neil Saunders
Eric Jain probably has some, and probably Pierre - Deepak Singh
Representing your data in RDF should be easy -- assuming it's already cleaned up and well structured, perhaps even stored in or exported to some XML representation. Don't even need any special tools for that. But if you are looking into setting up a complete ecosystem for editing, storing, searching, browsing etc, expect to invest a lot of time struggling with generic tools that want to do things just a bit different than you do... - Eric Jain
I've created a tool building a scientif network using pubmed/xml and foaf/rdf see http://plindenbaum.blogspot.com/2008... . It uses the Jena API. After a recent conversation with Alf Eaton I also (re) wrote a XSLT spreadsheet transforming pubmed to foaf http://code.google.com/p... - Pierre Lindenbaum
@Eric I agree. Representing our data in RDF is very easy. I'm just wondering what that gets us. We're evaluating the trade-offs for modeling our data different ways. Our immediate application is a web-based network visualization, but I'm also interested in the topic in a more general sense as well. - Sutee Dee
@Pierre Thanks for the example. Definitely will explore. Jena seems like a good choice. - Sutee Dee
RDF removes the need to invent your own conventions for representing a network/graph (e.g. on top of XML's tree model) + how to identify and reference resources across documents (XML only supports references within documents, and assumes documents). RDF may also allow you (or others!) to use generic tools e.g. for storing and searching the data. The drawback with RDF is that the standard XML syntax is verbose (but not much more than plain XML) and it's less straightforward to validate (at a schema level). - Eric Jain
simple scripts are out there for converting tab-delimited data (or from a relational db similarly) to RDF, by structuring triples using the table name as subject, column name as predicate, and cell data as object... can't spot my saved link for one, but Google "tab delimited to RDF"...also there's a bunch for XML to RDF -- what's the detail level of the network you want to represent? For specific RDF pathway modeling I'd suggest also biopax.org, there's good pointers there for conversion tools... - Ntino
@Sutee I know this thread is ancient on the FF timeline, but I'm curious what you and your group decided to do for this. Our lab is trying to answer the same question: how are we going to store and curate all the network data we commonly make use of? - Chris Lasher
@Chris We ended up storing the network data in a mysql database and outputting it as json from a web service. The graph data schema is basically edge_id, interactor_1, interactor_2, and optional columns for source and directed (boolean). We use entrez gene ids for the interactor columns. The web service response follows the format of the Google Visualization API... more... - Sutee Dee
Having read the above explanation, I want to like this again :-) - Neil Saunders
@Sutee Many thanks for taking the time to follow up. :-) Very helpful! @Neil I liked it on your behalf, since I missed this the first go 'round. - Chris Lasher
If your primary data is in a RDB then you may find the following link helpful http://esw.w3.org/topic... - Frank
Other ways to read this feed:Feed readerFacebook