组学
转录组与群体基因组数据集列表。
GET /api/v1/omics/transcriptomes
分页返回转录组数据集,包含物种、条件、平台与来源元数据。
curl "https://api.ilepbase.com/api/v1/omics/transcriptomes?species=&page=1&pageSize=10&sortBy=&sortDirection=asc"查询参数
| 名称 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
species | string | 否 | — | 按物种 slug 或科学名筛选。 |
page | int | 否 | 1 | 页码。 |
pageSize | int | 否 | 10 | 每页条目数。 |
sortBy | string | 否 | — | 排序字段名。 |
sortDirection | string | 否 | asc | asc 或 desc。 |
响应
{
"success": true,
"data": {
"items": [
{
"id": "tx-001",
"speciesSlug": "papilio-xuthus",
"scientificName": "Papilio xuthus",
"datasetName": "Larval midgut RNA-seq",
"condition": "larva",
"platform": "Illumina NovaSeq",
"source": "SRA",
"download": "/downloads/tx-pxut-larval-midgut.fq.gz"
}
],
"pagination": {
"page": 1,
"pageSize": 10,
"total": 24,
"totalPages": 3,
"hasNext": true,
"hasPrev": false
}
},
"timestamp": "2026-04-23T12:00:00.000Z"
}GET /api/v1/omics/population-genomes
群体层面的变异与样本元数据。
curl https://api.ilepbase.com/api/v1/omics/population-genomes响应
{
"success": true,
"data": {
"items": [
{
"id": "pop-001",
"speciesSlug": "papilio-xuthus",
"scientificName": "Papilio xuthus",
"populationName": "East Asian populations",
"sampleCount": 48,
"variantCount": "2.3M",
"source": "NCBI SRA"
}
],
"pagination": {
"page": 1,
"pageSize": 10,
"total": 5,
"totalPages": 1,
"hasNext": false,
"hasPrev": false
}
},
"timestamp": "2026-04-23T12:00:00.000Z"
}