9713c911f31c4acdc9f5dff7378e7b4f1367818f hiram Thu Aug 15 13:52:51 2013 -0700 adding track INSDC name refs #11348 diff --git src/hg/lib/ucscToINSDC.sql src/hg/lib/ucscToINSDC.sql new file mode 100644 index 0000000..c62fda1 --- /dev/null +++ src/hg/lib/ucscToINSDC.sql @@ -0,0 +1,9 @@ +# UCSC to INSDC chromosome name translation +CREATE TABLE ucscToINSDC ( + 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, # INSDC name at www.insdc.org + #Indices + PRIMARY KEY(chrom(21)) +);