Looking For Instances Of Database Schema To Store Data Such As Cnvs, Loh, Mutations ...
1
3
Entering edit mode
13.4 years ago

When people are looking for inspiration to build a database there is the Library of Free Data Models from DatabaseAnswers.org.

Unfortunatelly there is no instance of biological database that would store and integrate CNVs, LOH or mutations data.

Do you know where it is possible to find such instance. Or would you share your model if you are involved in such kind of project.

database next-gen sequencing cnv mutation • 2.0k views
ADD COMMENT
2
Entering edit mode
13.4 years ago

here is the schema for dbSNP (good luck :-) !) ftp://ftp.ncbi.nih.gov/snp/database/b124/mssql/schema/erd_dbSNP.pdf

most of those data (SNP, CNV...) can be stored in a simple table 'chrom/position/attributes' for example: http://projects.tcag.ca/variation/tableview.asp?table=DGV_Content_Summary.txt , http://hgdownload.cse.ucsc.edu/goldenPath/hg18/database/snp130.sql etc...

Having a good engine for quickly querying those data is another problem.

As far as I can the mysql indexes used by the UCSC have a good performance ( see the 'bin' field ).

When I need to quickly retrieve this kind of data, I upload it into a berkeleyDB database using a complex sorted key {chrom,position}.

and I'm still trying to find how HDF5 could be used to store+query this kind of data.

ADD COMMENT
0
Entering edit mode

Thanks a lot for sharing your experience.

ADD REPLY

Login before adding your answer.

Traffic: 2254 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6