Ignore:
Timestamp:
Aug 13, 2013, 2:20:17 PM (10 years ago)
Author:
Fredrik Levander
Message:

Fixes #812. Querying only for distinct score types with at least one not null value for combined fdr. Ignoring Proteios score type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/api/core/conf/common-queries.xml

    r4475 r4506  
    158158    </description>
    159159  </query>
     160 
     161    <query id="GET_UNIQUE_SCORE_TYPES_IN_HITS_FOR_PROJECT_WITH_FDR" type="HQL">
     162    <sql>
     163      SELECT DISTINCT h.scoreType
     164      FROM HitData h
     165      WHERE h.project = :project
     166      AND h.combinedFDR IS NOT NULL
     167      ORDER by h.scoreType
     168    </sql>
     169    <description>
     170      Load all distinct (unique) score types in the Hits table for a project
     171    </description>
     172  </query>
    160173
    161174  <query id="GET_UNIQUE_PLATEIDS_IN_HITS_FOR_PROJECT" type="HQL">
Note: See TracChangeset for help on using the changeset viewer.