src/hg/instinct/hgMicroscope/microscope.as 1.2

1.2 2010/02/27 01:09:13 cszeto
featureDb support
Index: src/hg/instinct/hgMicroscope/microscope.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/hgMicroscope/microscope.as,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/instinct/hgMicroscope/microscope.as	10 Feb 2010 19:48:55 -0000	1.1
+++ src/hg/instinct/hgMicroscope/microscope.as	27 Feb 2010 01:09:13 -0000	1.2
@@ -1,60 +1,61 @@
 table fileLocation
 "Location of image, typically a file directory"
     (
     int id;	"ID of location"
     lstring name;	"Directory path usually"
     )
 
 table submissionSource
 "Source of data - an external database, a contributor, etc."
     (
     int id;                     "ID of submission source"
     string name;                "Short name: Jackson Lab, Paul Gray, etc."
     )
 
 table submissionSet
 "Info on a batch of images submitted at once"
     (
     int id;                     "ID of submission set"
     string name;                "Name of submission set"
+    string featureDb;		"Name of associated clinical Db"
     int submissionSource;       "Source of this submission"
     int privateUser;            "ID of user allowed to view. If 0 all can see."
     int copyright;              "Copyright notice"
     )
 
 table copyright
 "Copyright information"
     (
     int id;     "ID of copyright"
     lstring notice;     "Text of copyright notice"
     )
 
 table contributor
 "Info on contributor"
     (
     int id;     "ID of contributor"
     string name;        "Name in format like Kent W.J."
     )
 
 table imageFile
 "A biological image file"
     (
     int id;             "ID of imageFile"
     string fileName;    "Image file name, not including directory"
     float priority;     "Lower priorities are displayed first"
     int imageWidth;     "Width of image in pixels"
     int imageHeight;    "Height of image in pixels"
     int fullLocation;   "Location of full-sized image"
     int thumbLocation;  "Location of thumbnail-sized image"
     int submissionSet;  "Submission set this is part of"
     string submitId;    "ID within submission set"
     )
 
 table image
 "An image.  There may be multiple images within an imageFile"
     (
     int id;             "ID of image"
     int submissionSet;  "Submission set this is part of"
     int imageFile;      "ID of image file"
     int imagePos;       "Position in image file, starting with 0"
     )