Skip to content

Commit

Permalink
add example to the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledk2 committed Nov 26, 2024
1 parent b07bb3f commit a8aec44
Showing 1 changed file with 35 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
A searchengine endpoint to return the available sub-container in a container (e.g. dataset in project)
A query can be provided to return only the search results
A searchengine endpoint to return the available sub-container in a container (e.g. dataset in project).
A query can be provided to return only the search results.
This a query example:
{
"resource": "image",
"query_details": {
"and_filters": [
{
"name": "Organism",
"value": "homo sapiens",
"operator": "equals",
"resource": "image"
},
{
"name": "Gene symbol",
"value": "AC240274.1",
"operator": "contains",
"resource": "image"
},
{
"name": "Organism part",
"value": "Brain",
"operator": "equals",
"resource": "image"
}
],
"or_filters": [

],
"case_sensitive": false
}
}
and the user should provide the container nane, e.g,idr0043-uhlen-humanproteinatlas/experimentA
and the container type which is project
This will return the dataset inside the project with several images in each, this is within the search results.
---
tags:
- Available sub-containers inside a container
Expand Down

0 comments on commit a8aec44

Please sign in to comment.