1. Get miRNA
Returns miRNAs data with project related connections.
1.1. CURL sample
$ curl 'https://minerva-service.lcsb.uni.lu/minerva/api/projects/empty/miRnas:search?query=hsa-miR-125a-3p' -X GET \
--cookie "MINERVA_AUTH_TOKEN=xxxxxxxx"
1.2. Path Parameters
| Parameter | Description |
|---|---|
|
project identifier |
1.3. Response Fields
| Path | Type | Description |
|---|---|---|
|
|
identifier of the miRNA |
|
|
name |
|
|
list of targets |
|
|
target name |
|
|
list of target references |
|
|
list of elements on the map associated with this target |
|
|
list of identifiers associated with this target |
1.4. Sample Response
[ {
"name" : "hsa-miR-125a-3p",
"id" : "hsa-miR-125a-3p",
"targets" : [ {
"name" : "FYN",
"targetParticipants" : [ {
"link" : "https://www.genenames.org/data/gene-symbol-report/#!/symbol/FYN",
"type" : "HGNC_SYMBOL",
"resource" : "FYN",
"id" : 0,
"annotatorClassName" : ""
} ],
"references" : [ {
"link" : "https://www.ncbi.nlm.nih.gov/pubmed/23606749",
"article" : null,
"type" : "PUBMED",
"resource" : "23606749",
"id" : 0,
"annotatorClassName" : ""
} ],
"targetElements" : [ ]
}, {
"name" : "GPC4",
"targetParticipants" : [ {
"link" : "https://www.genenames.org/data/gene-symbol-report/#!/symbol/GPC4",
"type" : "HGNC_SYMBOL",
"resource" : "GPC4",
"id" : 0,
"annotatorClassName" : ""
} ],
"references" : [ {
"link" : "https://www.ncbi.nlm.nih.gov/pubmed/22644326",
"article" : null,
"type" : "PUBMED",
"resource" : "22644326",
"id" : 0,
"annotatorClassName" : ""
} ],
"targetElements" : [ ]
}, {
"name" : "RHOA",
"targetParticipants" : [ {
"link" : "https://www.genenames.org/data/gene-symbol-report/#!/symbol/RHOA",
"type" : "HGNC_SYMBOL",
"resource" : "RHOA",
"id" : 0,
"annotatorClassName" : ""
} ],
"references" : [ {
"link" : "https://www.ncbi.nlm.nih.gov/pubmed/23525486",
"article" : null,
"type" : "PUBMED",
"resource" : "23525486",
"id" : 0,
"annotatorClassName" : ""
} ],
"targetElements" : [ ]
} ]
} ]
2. Get suggested miRNA queries
Get list of suggested miRNA queries in the context of the project.
2.1. CURL sample
$ curl 'https://minerva-service.lcsb.uni.lu/minerva/api/projects/empty/miRnas/suggestedQueryList' -X GET \
--cookie "MINERVA_AUTH_TOKEN=xxxxxxxx"
2.2. Path Parameters
| Parameter | Description |
|---|---|
|
project identifier |
2.3. Response Fields
| Path | Type | Description |
|---|---|---|
|
|
list of suggested miRNA queries |
2.4. Sample Response
[ ]