Page 1 of 1

OMERO.web Search App

PostPosted: Mon Apr 04, 2011 2:45 pm
by icaoberg
I am trying to modify the search app so that I can perform a search within a subset of images. I have two questions:

1) Does the API support this functionality? That is given, can I perform a search on a subset of images or dataset?
2) Does the batch search perform this task? Meaning, will the second search on a batch search use the results from the first search, and so on?

I created a search service and it doesn't have this functionaly.

Ivan

Re: OMERO.web Search App

PostPosted: Mon Apr 04, 2011 6:28 pm
by jmoore

Re: OMERO.web Search App

PostPosted: Tue Apr 05, 2011 4:25 pm
by icaoberg
so i can do full text search on an image id?

ivan

Re: OMERO.web Search App

PostPosted: Wed Apr 06, 2011 5:45 am
by jmoore
Hmmmm,.... I'm not sure what you mean, Ivan. Maybe you need to give me the full story. But, "id" is certainly a field stored in Lucene, so you can do something like:
Code: Select all
name:cell* AND (id:10 OR id:100 OR id:1000)


I'm not sure if there is a limit on the number of ids in that OR subclause.

Cheers,
~Josh