Retrieve growth media including a component with the given GMO ID.
tax_ids
Taxonomy ID (multiple)- default: 1148,2303, 1386
limit
limit- default: 10
offset
offset- default: 0
({
json(params) {
let tax_values = "";
return params["tax_ids"].split(",").map((taxid) => {
return "taxid:" + taxid.trim()
}).join(" ");
}
})
DEFINE sql:select-option "order"
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX taxid: <http://identifiers.org/taxonomy/>
PREFIX ddbj-tax: <http://ddbj.nig.ac.jp/ontologies/taxonomy/>
PREFIX gmo: <http://purl.jp/bio/10/gmo/>
SELECT (COUNT(DISTINCT ?medium_id) AS ?total) ?limit ?offset
FROM <http://growthmedium.org/strain/2023>
FROM <http://growthmedium.org/strain/2024>
FROM <http://ddbj.nig.ac.jp/ontologies/taxonomy/filtered_has_strain/2023>
FROM <http://togomedium.org/media>
WHERE {
VALUES ?tax_ids { {{tax_values}} }
?tax_ids rdf:type ddbj-tax:Taxon .
?search_tax rdfs:subClassOf* ?tax_ids .
?strain gmo:taxon ?search_tax ;
rdf:type sio:SIO_010055 .
?culture_for gmo:strain_id ?strain .
?medium_id gmo:GMO_000114 ?culture_for ;
rdf:type gmo:GMO_000001 ; #exist media
rdfs:label ?media_name ;
skos:altLabel ?original_media_id .
BIND("{{limit}}" AS ?limit)
BIND("{{offset}}" AS ?offset)
}
DEFINE sql:select-option "order"
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX sio: <http://semanticscience.org/resource/>
PREFIX taxid: <http://identifiers.org/taxonomy/>
PREFIX ddbj-tax: <http://ddbj.nig.ac.jp/ontologies/taxonomy/>
PREFIX gmo: <http://purl.jp/bio/10/gmo/>
SELECT DISTINCT ?medium_id ?medium_name ?original_media_id
FROM <http://growthmedium.org/strain/2023>
FROM <http://growthmedium.org/strain/2024>
FROM <http://ddbj.nig.ac.jp/ontologies/taxonomy/filtered_has_strain/2023>
FROM <http://togomedium.org/media>
WHERE {
VALUES ?tax_ids { {{tax_values}} }
?tax_ids rdf:type ddbj-tax:Taxon .
?search_tax rdfs:subClassOf* ?tax_ids .
?strain gmo:taxon ?search_tax ;
rdf:type sio:SIO_010055 .
?culture_for gmo:strain_id ?strain .
?medium_id gmo:GMO_000114 ?culture_for ;
rdf:type gmo:GMO_000001 ; #exist media
rdfs:label ?name ;
skos:altLabel ?original_media_id .
BIND (if(STR(?name) = "", "(Unnamed medium)", ?name) AS ?medium_name)
}
LIMIT {{limit}}
OFFSET {{offset}}
({
json({result, count}) {
let count_result = count.results.bindings[0];
let total = count_result ? parseInt(count_result["total"]["value"]) : 0;
let offset = count_result ? parseInt(count_result["offset"]["value"]) : 0;
let limit = count_result ? parseInt(count_result["limit"]["value"]) : 0;
let rows = result.results.bindings;
let contents = rows.map((row) => {
let medium_id = row["medium_id"]["value"].split("/").pop();
return {"gm_id": medium_id, "name": row["medium_name"]["value"], "original_media_id": row["original_media_id"]["value"]};
});
return {"total": total, "offset": offset, "limit": limit, "contents": contents};
}
})