src/hg/lib/seq.as 1.2
1.2 2010/04/29 03:40:21 markd
fixed invalid autoSql that prevented descriptions from being displayed
Index: src/hg/lib/seq.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/seq.as,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/lib/seq.as 17 Mar 2006 23:57:15 -0000 1.1
+++ src/hg/lib/seq.as 29 Apr 2010 03:40:21 -0000 1.2
@@ -1,12 +1,12 @@
table seq
"Information about sequences contained in files described in extFile"
(
uint id; "ID/index"
string acc; "Accession of sequence"
uint size; "Size of sequence (number of bases)"
- date gb_date; "unused"
+ string gb_date; "unused"
uint extFile; "ID/index of file in extFile"
- long file_offset; "byte offset of sequence in file"
+ uint file_offset; "byte offset of sequence in file"
uint file_size; "byte size of sequence in file"
)