データセット一覧

Bgee

複数の動物種にわたる遺伝子発現パターンの検索と比較のためのデータベース

データセット仕様

タグ
Gene Gene expression
提供元 Original
登録区分 Added by RDF portal
データ提供者
  • SIB Swiss Institute of Bioinformatics
作成者
公開日 2024-00-00
ライセンス
  • Commons Zero license (CC0)
バージョン 15.2.3
ダウンロード https://rdfportal.org/download/bgee
SPARQLエンドポイント https://rdfportal.org/sib/sparql

データセット統計

Triples
6755885759
Subjects
715849799
Properties
22
Objects
155732700
Classes
26

SPARQLクエリ例

例 1

エンドポイントで実行
# Endpoint: https://rdfportal.org/sib/sparql
# Description: What is the expression level of the APOC1 gene?
# Parameter: gene_name: (example: APOC1)

PREFIX genex: <http://purl.org/genex#>
PREFIX orth: <http://purl.org/net/orth#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT ?expression_level ?gene_name
FROM <http://bgee.org>
WHERE {
    VALUES ?gene_name { "APOC1" }
    ?Expression a genex:Expression ;
        genex:hasExpressionLevel ?expression_level ;
        genex:hasSequenceUnit / rdfs:label ?gene_name .
}
LIMIT 100

例 2

エンドポイントで実行
# Endpoint: https://rdfportal.org/sib/sparql
# Description: At which developmental stage is the APOC1 gene expressed?
# Parameter: gene_name: (example: APOC1)

PREFIX genex: <http://purl.org/genex#>
PREFIX efo: <http://www.ebi.ac.uk/efo/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX orth: <http://purl.org/net/orth#>

SELECT DISTINCT ?expression_condition_developmental_stage ?gene_name
FROM <http://bgee.org>
WHERE {
    VALUES ?gene_name { "APOC1" }
    ?Expression a genex:Expression ;
        genex:hasExpressionCondition / genex:hasDevelopmentalStage / rdfs:label ?expression_condition_developmental_stage ;
        genex:hasSequenceUnit / rdfs:label ?gene_name .
}
LIMIT 100