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

Table 1. /minerva/api/projects/{projectId}/miRnas:search
Parameter Description

projectId

project identifier

1.3. Response Fields

Path Type Description

[].id

object

identifier of the miRNA

[].name

string

name

[].targets

array<Target>

list of targets

[].targets[].name

string

target name

[].targets[].references

array<Reference>

list of target references

[].targets[].targetElements

array<object>

list of elements on the map associated with this target

[].targets[].targetParticipants

array<object>

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

Table 2. /minerva/api/projects/{projectId}/miRnas/suggestedQueryList
Parameter Description

projectId

project identifier

2.3. Response Fields

Path Type Description

[]

array<string>

list of suggested miRNA queries

2.4. Sample Response

[ ]