From 04b9ba652dc8c19fc78a6a3bd623a1a55e62a7e8 Mon Sep 17 00:00:00 2001
From: tjc <tjc@ee4ac58c-ac51-4696-9907-e4b3aa274f04>
Date: Thu, 25 Sep 2008 10:07:34 +0000
Subject: [PATCH] add getFeatureLocsByListOfIds

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@8881 ee4ac58c-ac51-4696-9907-e4b3aa274f04
---
 artemis_sqlmap/FeatureLoc.xml | 22 ++++++++--------------
 1 file changed, 8 insertions(+), 14 deletions(-)

diff --git a/artemis_sqlmap/FeatureLoc.xml b/artemis_sqlmap/FeatureLoc.xml
index 3b725ae09..7312d277b 100644
--- a/artemis_sqlmap/FeatureLoc.xml
+++ b/artemis_sqlmap/FeatureLoc.xml
@@ -14,6 +14,7 @@
         
      <resultMap id="map-location-lazy"
                 class="FeatureLoc">
+		<result property="featureByFeatureId.featureId" column="feature_id" />
         <result property="srcFeatureId" column="srcfeature_id" nullValue="-999" />
         <result property="featureBySrcFeatureId" column="{featureId=srcfeature_id}" 
                                                  select="getLazyFeatureNoResiduesById" />
@@ -26,27 +27,20 @@
         <result property="rank"      column="rank"/>
      </resultMap>
      
-	 <resultMap id="map-location"
-                class="FeatureLoc">
-        <result property="srcFeatureId" column="srcfeature_id" nullValue="-999" />
-        <result property="featureBySrcFeatureId" column="{featureId=srcfeature_id}" 
-                                                 select="getFeatureById" />
-        <result property="fmin"   column="fmin"   nullValue="-999" />
-        <result property="fmax"   column="fmax"   nullValue="-999" />
-        <result property="strand" column="strand" nullValue="0" />
-        <result property="phase"  column="phase"  nullValue="0" />
-        <result property="residueInfo"  column="residue_info"/>
-        <result property="locGroup"  column="locgroup"/>
-        <result property="rank"      column="rank"/>
-     </resultMap>
 	  
      <!--  select featureloc -->
      <select id="getFeatureLoc" resultMap="map-location-lazy">
-       SELECT srcfeature_id, fmin, fmax, strand, phase, residue_info, locgroup, rank
+       SELECT feature_id, srcfeature_id, fmin, fmax, strand, phase, residue_info, locgroup, rank
        FROM  featureloc
        WHERE featureloc.feature_id=#id#
      </select>
      
+	 <select id="getFeatureLocsByListOfIds" resultMap ="map-location-lazy">
+	   SELECT feature_id, srcfeature_id, fmin, fmax, strand, phase, residue_info, locgroup, rank
+       FROM  featureloc
+       WHERE featureloc.feature_id IN <iterate open="(" close=")" conjunction=","> $[]$ </iterate>
+     </select>
+	
      <!-- used to find match meature from the subject and query featureId -->
      <select id="getFeatureIdBySrcFeatureId" parameterClass="Feature" resultClass="java.lang.Integer">
         <iterate property="featureLocsForFeatureId" conjunction="INTERSECT" >
-- 
GitLab