We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In type summation examples, the line with variable_name contains incorrect JSON:
variable_name
"cell_imembrane": { "cells": "Column", "sections": "soma", "type": "summation", "variable_name": "i_membrane", "IClamp", # <-- this one "unit": "nA", "start_time": 0, "end_time": 500, "enabled": true }
moreover, we have the same issue in the description of variable_name:
...For summation type, can sum multiple variables by indicating as a comma separated strings. e.g. "ina", "ik"
How should these be defined?
"'ina', 'ik'"
"ina, ik"
["ina", "ik"]
list
array
text
EDIT: I believe @WeinaJi , @jamesgking can provide an answer
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In type summation examples, the line with
variable_name
contains incorrect JSON:moreover, we have the same issue in the description of
variable_name
:How should these be defined?
"'ina', 'ik'"
"ina, ik"
["ina", "ik"]
variable_name
should be defined as alist
/array
instead oftext
EDIT: I believe @WeinaJi , @jamesgking can provide an answer
The text was updated successfully, but these errors were encountered: