IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 6, 2007, 5:42:07 PM (19 years ago)
Author:
jhoblitt
Message:

remove chipInputImfile table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/share/chiptool_pendingimfile.sql

    r14025 r14065  
    11SELECT
    22    chipRun.*,
    3     chipInputImfile.exp_id,
    4     chipInputImfile.class_id,
     3    rawImfile.class_id,
    54    rawImfile.uri,
    65    rawExp.exp_tag,
     
    109    rawExp.filelevel
    1110FROM chipRun
    12 JOIN chipInputImfile
    13     USING(chip_id)
     11JOIN rawExp
     12    USING(exp_id)
     13JOIN rawImfile
     14    USING(exp_id)
    1415LEFT JOIN chipProcessedImfile
    15     ON chipInputImfile.chip_id = chipProcessedImfile.chip_id
    16     AND chipInputImfile.exp_id = chipProcessedImfile.exp_id
    17     AND chipInputImfile.class_id = chipProcessedImfile.class_id
    18 JOIN rawImfile
    19     ON chipInputImfile.exp_id = rawImfile.exp_id
    20     AND chipInputImfile.class_id = rawImfile.class_id
    21 JOIN rawExp
    22     ON rawImfile.exp_id = rawExp.exp_id
     16    ON chipRun.chip_id = chipProcessedImfile.chip_id
     17    AND rawImfile.exp_id = chipProcessedImfile.exp_id
     18    AND rawImfile.class_id = chipProcessedImfile.class_id
    2319LEFT JOIN chipMask
    2420    ON chipRun.label = chipMask.label
Note: See TracChangeset for help on using the changeset viewer.