Skip to content
Snippets Groups Projects
Commit c7125460 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '157-search-for-pubmed-does-not-work-in-submaps' into 'master'

Resolve "Search for PUBMED does not work in submaps"

Closes #157

See merge request !69
parents 96ce0770 da599198
No related branches found
No related tags found
1 merge request!69Resolve "Search for PUBMED does not work in submaps"
......@@ -187,7 +187,7 @@ public class MiriamData implements Comparable<MiriamData>, Serializable {
@Override
public int compareTo(MiriamData other) {
return ((dataType + ":" + resource).compareTo(other.dataType + ":" + other.resource));
return ((dataType + ":" + resource).toLowerCase().compareTo((other.dataType + ":" + other.resource).toLowerCase()));
}
/**
......
......@@ -488,7 +488,7 @@ public class SearchService implements ISearchService {
/**
* Returns elements that are annotated with the given miriam data.
*
* @param model
* @param topModel
* model where elements are looked for
* @param md
* miriam annotation to identifiy interesting elements
......@@ -496,18 +496,23 @@ public class SearchService implements ISearchService {
* max number of elements to find
* @return elements that are annotated with the given miriam data
*/
private List<IHeavyView> searchByMiriam(Model model, MiriamData md, int limit) {
private List<IHeavyView> searchByMiriam(Model topModel, MiriamData md, int limit) {
List<IHeavyView> result = new ArrayList<>();
for (BioEntity obj : model.getElementsByAnnotation(md)) {
if (result.size() >= limit) {
break;
}
if (obj instanceof Element) {
result.add(fullAliasViewFactory.create((Element) obj));
} else if (obj instanceof Reaction) {
result.addAll(reactionToResultList((Reaction) obj));
} else {
throw new InvalidClassException("Unknown class: " + obj.getClass());
Set<Model> models = new HashSet<>();
models.add(topModel);
models.addAll(topModel.getSubmodels());
for (Model model : models) {
for (BioEntity obj : model.getElementsByAnnotation(md)) {
if (result.size() >= limit) {
break;
}
if (obj instanceof Element) {
result.add(fullAliasViewFactory.create((Element) obj));
} else if (obj instanceof Reaction) {
result.addAll(reactionToResultList((Reaction) obj));
} else {
throw new InvalidClassException("Unknown class: " + obj.getClass());
}
}
}
return result;
......
......@@ -25,6 +25,8 @@ import lcsb.mapviewer.model.map.MiriamType;
import lcsb.mapviewer.model.map.layout.Layout;
import lcsb.mapviewer.model.map.model.Model;
import lcsb.mapviewer.model.map.model.ModelFullIndexed;
import lcsb.mapviewer.model.map.model.ModelSubmodelConnection;
import lcsb.mapviewer.model.map.model.SubmodelType;
import lcsb.mapviewer.model.map.reaction.Reaction;
import lcsb.mapviewer.model.map.species.Complex;
import lcsb.mapviewer.model.map.species.Degraded;
......@@ -521,6 +523,28 @@ public class SearchServiceTest extends ServiceTestFunctions {
}
@Test
public void testSearchByMiriamInSubmap() throws Exception {
try {
String query = "HGNC_SYMBOL:SNCA";
Model model = new ModelFullIndexed(null);
Model submodel = new ModelFullIndexed(null);
GenericProtein protein = new GenericProtein("s1");
protein.addMiriamData(new MiriamData(MiriamType.HGNC_SYMBOL, "SNCA"));
submodel.addElement(protein);
model.addSubmodelConnection(new ModelSubmodelConnection(submodel, SubmodelType.UNKNOWN));
SearchElementResult result = searchService.searchByQuery(model, query, 50, null, "127.0.0.1");
assertEquals(1, result.getElements().size());
} catch (Exception e) {
e.printStackTrace();
throw e;
}
}
@Test
public void testGetMiriamTypeForQuery2() throws Exception {
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment