src/hg/lib/jaxQTL.sql 1.4
1.4 2010/02/17 19:43:25 angie
Removed to avoid clash with jaxQtl.sql (QA's preferred name). hgc still uses jaxQTL.[ch].
Index: src/hg/lib/jaxQTL.sql
===================================================================
RCS file: src/hg/lib/jaxQTL.sql
diff -N src/hg/lib/jaxQTL.sql
--- src/hg/lib/jaxQTL.sql 13 Jun 2007 22:44:41 -0000 1.3
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
-# jaxQTL.sql was originally generated by the autoSql program, which also
-# generated jaxQTL.c and jaxQTL.h. This creates the database representation of
-# an object which can be loaded and saved from RAM in a fairly
-# automatic way.
-
-#Quantitative Trait Loci from Jackson Lab / Mouse Genome Informatics
-CREATE TABLE jaxQTL (
- chrom varchar(255) not null, # Human chromosome or FPC contig
- chromStart int unsigned not null, # Start position in chromosome
- chromEnd int unsigned not null, # End position in chromosome
- name varchar(255) not null, # Name of item
- score int unsigned not null, # Score from 0-1000 (bed6 compat.)
- strand char(1) not null, # + or - (bed6 compat.)
- marker varchar(255) not null, # MIT SSLP Marker w/highest correlation
- mgiID varchar(255) not null, # MGI ID
- description varchar(255) not null, # MGI description
- cMscore float not null, # cM position of marker associated with peak LOD score
- #Indices
- PRIMARY KEY(name)
-);