Skip to content
Snippets Groups Projects
Commit d7e3ce0c authored by tjc's avatar tjc
Browse files

fix for similarity

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@9431 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 52d7b5bb
No related branches found
No related tags found
No related merge requests found
......@@ -237,7 +237,7 @@
f.feature_id=#featureSynonyms[].feature.featureId#
</iterate>
</isNotNull>
( uniquename=#uniqueName# )
( uniquename LIKE #uniqueName# )
</isNotNull>
<isGreaterThan property="cvTerm.cvTermId" compareValue="0" prepend="AND">
......
......@@ -939,7 +939,7 @@ public class IBatisDAO extends GmodDAO
// insert match feature
int value = 1;
List matches = getFeaturesByUniqueName(matchFeature.getUniqueName()+"/_%");
List matches = getFeaturesByUniqueName(matchFeature.getUniqueName()+"_%");
for(int i=0; i<matches.size(); i++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment