Ensembl是许多真核基因组的基因组数据库和注释来源的集合。他们为用户创建了REST API接口来访问他们的数据。 http://rest.ensembl.org/。另外,提供编写我们自己的客户端(perl,python等)的详细步骤。我正在学习PHP,因此想写PHP客户端,任何建议都会有所帮助。是否有任何库或类可用于有效实现客户端和访问特定数据并在html上显示?以下是我到目前为止所做的工作并且正在进行中。
$server = "http://grch37.rest.ensembl.org";
$ext = "/vep/human/hgvs/";
$hgvs_notation = "AGT:c.803T>C?content-type=application/json";
# added the application header
$url = $server.$ext.$hgvs_notation;# updated based on comment
$response = file_get_contents($url);
$data = json_decode($response, true);
print_r($data);