1

NeuroML データベースのチャネル モデルのサブセットを、それらが埋め込まれているセル モデルに関連付けたいと考えています。特定のチャネル モデルに関連付けられているすべてのセルをすばやく簡単に取得する方法があるかどうか疑問に思っています。

Web ポータル ( https://neuroml-db.org/model_info?model_id=NMLCH000001 )の「最初の」チャネル モデルは次のとおりです。下の方が細胞モデルに属していると言えます。

https://neuroml-db.org/api/models?id=NMLCHxxxxxxを使用してすべてのチャネル モデルの詳細 ("Type":"CH") を収集したので、確認したい各チャネル モデルの JSON を取得しました。「関連付けられたセル」フィールドが見つかりません。

関連するセルのすべての NMLCLxxxxxx のリストがある場所はありますか? 私はそれを見逃しているかもしれません。

4

1 に答える 1

0

You can get all cell models to which a channel model is associated with using the parents key of the model API.

Example

For example, this channel shows it is included in the following cell models:

enter image description here

To get the list of those cells from the API:

In the channel model detail API url: https://neuroml-db.org/api/model?id=NMLCH000134

Find the top-level parents key in resulting JSON, which lists all of the above cell models and some of their detail:

enter image description here

于 2019-06-08T20:06:30.910 に答える