Skip to content

Implementing profiling workflows

Shantanu Singh edited this page May 12, 2016 · 7 revisions
CREATE view supplement_Image_withmoa 
AS 
  SELECT TableNumber, 
         ImageNumber, 
         Image_Metadata_Plate_DAPI, 
         Image_Metadata_Well_DAPI, 
         Image_Metadata_Compound, 
         Image_Metadata_Concentration, 
         moa AS Image_Metadata_MOA 
  FROM   supplement_Image AS image 
         JOIN `supplement_GroundTruth` AS ground 
           ON image.`Image_Metadata_Compound` = ground.`compound` and 
           image.`Image_Metadata_Concentration` = ground.`concentration`
  • Create this view to data at the per-cell level along with metadata
CREATE view supplement_Object_withmoa 
AS 
  SELECT * 
  FROM   supplement_Object AS object 
         JOIN `supplement_Image_withmoa` AS image 
           ON image.`TableNumber` = object.`TableNumber` and 
           image.`ImageNumber` = object.`ImageNumber` 
Clone this wiki locally