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

1.4. Sample Response

[ {
  "name" : "hsa-miR-125a-3p",
  "id" : "hsa-miR-125a-3p",
  "targets" : [ ]
} ]

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

[ ]